歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中用Application類實現全局變量

在Java中如果要使用全局變量,一般定義public static類型的變量。但是這種方法不符合Android的框架架構,Android中要使用Application context。

Application是一個基類,這個基類的作用是獲取整個App的狀態,我們需要自己定義一個類來繼承這個基類。代碼如下:

  1. package com.tianjf;  
  2.   
  3. import android.app.Application;  
  4.   
  5. public class MyApplication extends Application {  
  6.       
  7.     private boolean mHasPassword;  
  8.   
  9.     public boolean ismHasPassword() {  
  10.         return mHasPassword;  
  11.     }  
  12.   
  13.     public void setmHasPassword(boolean mHasPassword) {  
  14.         this.mHasPassword = mHasPassword;  
  15.     }  
  16.   
  17.     @Override  
  18.     public void onCreate() {  
  19.         mHasPassword = true;  
  20.         super.onCreate();  
  21.     }  
  22. }  
我們定義了一個MyApplication繼承自Application,並定義了一個全局變量mHasPassword,然後復寫基類的onCreate方法,onCreate負責對所有全局變量賦初期值。

我們還需要把自定義的Application類添加到AndroidManifest.xml裡面,代碼如下:

  1. <application  
  2.         android:name="MyApplication"  
  3. 。。。。。。。。。。。。。。。。。。。。。。。。。。。  
  4. 。。。。。。。。。。。。。。。。。。。。。。。。。。。  
  5.  </application>  
這樣做的目的:App的進程被創建的時候,這個類就會被實例化,onCreate方法就會被執行,給所有全局變量賦初期值。

這樣,所有的Activity就共同擁有這個類裡面的變量了。

下面用兩個Activity來測試一下,當一個Activity改變了全局變量的值之後,看看另一個Activity能不能取到改變後的值。

ApplicationDemoActivity.java

  1. package com.tianjf;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.util.Log;  
  7. import android.view.View;  
  8. import android.view.View.OnClickListener;  
  9.   
  10. public class ApplicationDemoActivity extends Activity implements  
  11.         OnClickListener {  
  12.   
  13.     private static final String TAG = "ApplicationDemoActivity";  
  14.   
  15.     @Override  
  16.     public void onCreate(Bundle savedInstanceState) {  
  17.         super.onCreate(savedInstanceState);  
  18.         setContentView(R.layout.main);  
  19.         findViewById(R.id.button).setOnClickListener(this);  
  20.     }  
  21.   
  22.     @Override  
  23.     public void onClick(View v) {  
  24.         switch (v.getId()) {  
  25.         case R.id.button:  
  26.             MyApplication myApplication = (MyApplication) getApplication();  
  27.             Log.i(TAG, String.valueOf(myApplication.ismHasPassword()));  
  28.             myApplication.setmHasPassword(false);  
  29.   
  30.             Intent intent = new Intent(this, AnotherActivity.class);  
  31.             startActivity(intent);  
  32.             break;  
  33.   
  34.         default:  
  35.             break;  
  36.         }  
  37.     }  
  38. }  
AnotherActivity.java
  1. package com.tianjf;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.util.Log;  
  6.   
  7. public class AnotherActivity extends Activity {  
  8.   
  9.     private static final String TAG = "AnotherActivity";  
  10.       
  11.     @Override  
  12.     protected void onCreate(Bundle savedInstanceState) {  
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.another);  
  15.         MyApplication myApplication = (MyApplication) getApplication();  
  16.         Log.i(TAG, String.valueOf(myApplication.ismHasPassword()));  
  17.     }  
  18. }  
main.xml
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/hello" />  
  11.   
  12.     <Button  
  13.         android:id="@+id/button"  
  14.         android:layout_width="fill_parent"  
  15.         android:layout_height="wrap_content"  
  16.         android:text="Start another activity" />  
  17.   
  18. </LinearLayout>  
another.xml
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/hello" />  
  11.   
  12. </LinearLayout>  
運行一下看看結果。
Copyright © Linux教程網 All Rights Reserved