Android中用Application類實現全局變量

最近在項目中,遇到了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

  1. yy.android.yapp;  
  2. import android.app.Application;  
  3.   
  4. public class YApp extends Application{  
  5.   
  6.     private String ylabel ;      
  7.     public String getLabel(){  
  8.         return ylabel;  
  9.     }     
  10.     public void setLabel(String s){  
  11.         this.ylabel = s;  
  12.     }  
  13.   
  14.     @Override  
  15.     public void onCreate() {  
  16.         // TODO Auto-generated method stub  
  17.         super.onCreate();  
  18.         setLabel("YUZHIBOYI_CSND!"); //初始化全局變量         
  19.     }     
  20. }  

下面是mainActivity.java

  1. package yy.android.yapp;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.util.Log;  
  7.   
  8. public class mainActivity extends Activity {  
  9.      
  10.     private YApp yApp;  
  11.      
  12.     @Override  
  13.     public void onCreate(Bundle savedInstanceState) {  
  14.         super.onCreate(savedInstanceState);  
  15.         setContentView(R.layout.main);  
  16.         yApp = (YApp) getApplication(); //得到自定義的應用程序YApp  
  17.         Log.i("YAnGl", "InitLabel:"+yApp.getLabel());   //將咱們放到進程中的全局變量拿出來,看是否是咱們曾經設置的值  
  18.   
  19.         yApp.setLabel("YUZHIBOYI!");  //修改一下  
  20.         Log.i("YAnG", "ChangeLabel:"+yApp.getLabel()); //看下,這個值改變了沒有  
  21.   
  22.         Intent intent = new Intent();  //再看一下在另外一個Activity中是取到初始化的值,仍是取到修改後的值  
  23.         intent.setClass(this, otherActivity.class);  
  24.         startActivity(intent);  
  25.     }  
  26. }  

另外一個otherActivity.java:

  1. package yy.android.yapp;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.util.Log;  
  6.   
  7. public class otherActivity extends Activity{  
  8.      
  9.     private YApp yApp;  
  10.      
  11.     @Override  
  12.     protected void onCreate(Bundle savedInstanceState) {  
  13.   
  14.             super.onCreate(savedInstanceState);  
  15.             setContentView(R.layout.main);  
  16.              
  17.             yApp = (YApp) getApplication();  //得到自定義的應用程序MyApp  
  18.             Log.i("YAnG", "OhterActivity receive the Label:"+yApp.getLabel()); //查看變量值是否修改了  
  19.   
  20.     }         
  21. }  

修改配置文件ApplicationManifest.xml,將要運行的應用程序YApp加進去:

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.       package="com.android.test"  
  4.       android:versionCode="1"  
  5.       android:versionName="1.0">  
  6.     <!-- 在這裏,將默認的Application設置成本身作的YApp-->  
  7.     <application android:name="YApp"  
  8.         android:icon="@drawable/icon"  
  9.         android:label="@string/app_name"  
  10.         >  
  11.         <activity android:name=".mainActivity"  
  12.                   android:label="@string/app_name">  
  13.             <intent-filter>  
  14.                 <action android:name="android.intent.action.MAIN" />  
  15.                 <category android:name="android.intent.category.LAUNCHER" />  
  16.             </intent-filter>  
  17.         </activity>  
  18.         <activity android:name=".otherActivity">  
  19.         </activity>  
  20.     </application>  
  21.   
  22. </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

好了,用法就這樣!

相關文章
相關標籤/搜索