在Android下有类似于session的东西,叫做Application, getApplication()用法

在Android上有类似于session的东西,叫做Application。
在Android上有类似于session的东西,叫做Application。

1、你可以新建一个类,例如:HelloWordApplication.java 必须extends Application(名字随你取)
在这个类里面设定你要全局的数据变量,例如:private String loginName;
然后生成它的get、set方法。
2、在AndroidManifest.xml文件中配置你的Application类,方法如下:
<application android:icon="@drawable/icon"  android:label="@string/app_name" android:name="HelloWordApplication">
        <activity >
             //略
        </activity>
    </application>
就是在<application>标签儿中增加android:name="HelloWordApplication"的属性配置。
3、在使用的时候:
HelloWordApplicationapplication = (HelloWordApplication)getApplication();
application.setLoginName("百度");
则就将"百度"保存到了Application里,其他地方要用的时候,application.getLoginName();就可以了。

 

android getApplication()使用

 

Java代码  技术分享
  1. package com.hyzing;  
  2.   
  3. import android.app.Application;  
  4.   
  5. public class MySystemAppcation extends Application{  
  6.     private int curIndex;  
  7.   
  8.     public int getCurIndex() {  
  9.         return curIndex;  
  10.     }  
  11.   
  12.     public void setCurIndex(int curIndex) {  
  13.         this.curIndex = curIndex;  
  14.     }  
  15.   
  16.     @Override  
  17.     public void onCreate() {  
  18.         super.onCreate();  
  19.     }  
  20.   
  21.     @Override  
  22.     public void onTerminate() {  
  23.         super.onTerminate();  
  24.     }  
  25. }  
Java代码  技术分享
  1. package com.hyzing;  
  2. import android.app.Activity;  
  3. import android.content.Intent;  
  4. import android.os.Bundle;  
  5. import android.util.Log;  
  6.   
  7. public class SystemtestActivity extends Activity {  
  8.     @Override  
  9.     public void onCreate(Bundle savedInstanceState) {  
  10.         super.onCreate(savedInstanceState);  
  11.         //setContentView(R.layout.main);      
  12.         MySystemAppcation application = (MySystemAppcation) this  
  13.                 .getApplication();  
  14.         System.out.println("++++++++++++++"+application);  
  15.         Log.i("data", "===============" + application.getCurIndex());  
  16.         application.setCurIndex(5);  
  17.         Intent intent = new Intent();  
  18.         Bundle bundle = new Bundle();  
  19.         bundle.putString("checkIn", "0");  
  20.         bundle.putBoolean("managerUser", true);  
  21.         intent.putExtras(bundle);  
  22.         intent.setClass(<span style="color: #ff0000;">SystemtestActivity.this</span>, PrintActivity.class);  
  23.         startActivity(intent);  
  24.           
  25.     }  
  26. }  
Java代码  技术分享
  1. package com.hyzing;  
  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 PrintActivity extends Activity {  
  9.   
  10.     @Override  
  11.     protected void onCreate(Bundle savedInstanceState) {  
  12.         <span style="color: #ff0000;">super.onCreate(savedInstanceState);</span>  
  13.         MySystemAppcation application = (MySystemAppcation) this  
  14.                 .getApplication();  
  15.         Log.i("data", "" + application.getCurIndex());  
  16.         application.setCurIndex(6);  
  17.         Intent intent = new Intent();  
  18.         Bundle bundle = new Bundle();  
  19.         bundle.putString("checkIn", "0");  
  20.         bundle.putBoolean("managerUser", true);  
  21.         intent.putExtras(bundle);  
  22.         intent.setClass(PrintActivity.this, PrintAgainActivity.class);  
  23.         startActivity(intent);  
  24.     }  
  25. }  
 
Java代码  技术分享
  1. package com.hyzing;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.util.Log;  
  6.   
  7. public class PrintAgainActivity extends Activity {  
  8.   
  9.     @Override  
  10.     protected void onCreate(Bundle savedInstanceState) {  
  11.         <span style="color: #ff0000;">super.onCreate(savedInstanceState);</span>  
  12.         final MySystemAppcation application = (MySystemAppcation) this  
  13.                 .getApplication();  
  14.         Log.i("data", "" + application.getCurIndex());  
  15.   
  16.     }  
  17.   
  18. }  
 
Java代码  技术分享
    1. <?xml version="1.0" encoding="utf-8"?>  
    2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
    3.     package="com.hyzing"  
    4.     android:versionCode="1"  
    5.     android:versionName="1.0" >  
    6.   
    7.     <uses-sdk android:minSdkVersion="15" />  
    8.     <application android:name=".MySystemAppcation"  
    9.         android:icon="@drawable/ic_launcher"  
    10.         android:label="@string/app_name" >  
    11.         <activity  
    12.             android:name=".SystemtestActivity"  
    13.             android:label="@string/app_name" >  
    14.             <intent-filter>  
    15.                 <action android:name="android.intent.action.MAIN" />  
    16.                 <category android:name="android.intent.category.LAUNCHER" />  
    17.             </intent-filter>  
    18.         </activity>  
    19.         <activity  
    20.             android:name=".PrintActivity"  
    21.             android:label="@string/app_name" >              
    22.         </activity>  
    23.         <activity  
    24.             android:name=".PrintAgainActivity"  
    25.             android:label="@string/app_name" >              
    26.         </activity>  
    27.           
    28.     </application>  
    29.   
    30. </manifest>  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。