最近在項目中,遇到了application這個類,開始不知道有什麼用,通過學習後才知道它的用途也蠻大的,舉個例子,若是想在整個應用中使用全局變量,在java中通常是使用靜態變量,public類型;而在android中若是使用這樣的全局變量就不符合Android的框架架構,可是可使用一種更優雅的方式就是使用Application context。html
咱們先看看一下這段說明:java
Base class for those who need to maintain global application state. You android
can provide your own implementation by specifying its name in your架構
AndroidManifest.xml's <application> tag, which will cause that classapp
to be instantiated for you when the process for your application/package is框架
created. ide
意思是:application類是一個基類,這個基類的做用是爲了獲取整個應用程序的狀態。你能夠本身繼承或實現這個類,當你要使用本身拓展的application類的時候,只要在manifest.xml中的<application>標籤中name應用本身定義的類就好了,這樣作的結果是:當你的應用程序或者包所在的進程建立的時候,這個類就會被實例化。學習
怎麼使用它呢?首先須要重寫Application,主要重寫裏面的onCreate方法,就是建立的時候,初始化變量的值。而後在整個應用中的各個文件中就能夠對該變量進行操做了。 啓動Application時,系統會建立一個PID,即進程ID,全部的Activity就會在此進程上運行。那麼咱們在Application建立的時候初始化全局變量,同一個應用的全部Activity均可以取到這些全局變量的值,換句話說,咱們在某一個Activity中改變了這些全局變量的值,那麼在同一個應用的其餘Activity中值就會改變。下面舉個例子詳細介紹一下應用步驟:this
代碼以下:spa
- yy.android.yapp;
- import android.app.Application;
-
- public class YApp extends Application{
-
- private String ylabel ;
- public String getLabel(){
- return ylabel;
- }
- public void setLabel(String s){
- this.ylabel = s;
- }
-
- @Override
- public void onCreate() {
-
- super.onCreate();
- setLabel("YUZHIBOYI_CSND!");
- }
- }
下面是mainActivity.java
- package yy.android.yapp;
-
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.util.Log;
-
- public class mainActivity extends Activity {
-
- private YApp yApp;
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- yApp = (YApp) getApplication();
- Log.i("YAnGl", "InitLabel:"+yApp.getLabel());
-
- yApp.setLabel("YUZHIBOYI!");
- Log.i("YAnG", "ChangeLabel:"+yApp.getLabel());
-
- Intent intent = new Intent();
- intent.setClass(this, otherActivity.class);
- startActivity(intent);
- }
- }
另外一個otherActivity.java:
- package yy.android.yapp;
-
- import android.app.Activity;
- import android.os.Bundle;
- import android.util.Log;
-
- public class otherActivity extends Activity{
-
- private YApp yApp;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
-
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- yApp = (YApp) getApplication();
- Log.i("YAnG", "OhterActivity receive the Label:"+yApp.getLabel());
-
- }
- }
修改配置文件ApplicationManifest.xml,將要運行的應用程序YApp加進去:
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.test"
- android:versionCode="1"
- android:versionName="1.0">
-
- <application android:name="YApp"
- android:icon="@drawable/icon"
- android:label="@string/app_name"
- >
- <activity android:name=".mainActivity"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:name=".otherActivity">
- </activity>
- </application>
-
- </manifest>
運行的結果: 03-04 16:53:17.295: INFO/guoll(650): InitLabel:YUZHIBOYI_CSND! 03-04 16:53:17.295: INFO/guoll(650): ChangeLabel:YUZHIBOYI 03-04 16:53:17.426: INFO/guoll(650): OhterActivity receive the Label:YUZHIBOYI
好了,用法就這樣!