Android Application 类共享全局数据

android系统会为每个程序运行时创建一个Application类的对象且仅创建一个,所以Application可以说是单例模式的一个类。且application对象的生命周期是整个程序中最长的,它的生命周期就等于这个程序的生命周期。因为它是全局的单例的,所以在不同的Activity,Service中获得的对象都是同一个对象。所以通过Application来进行一些,数据传递,数据共享 等,数据缓存等操作,代码如下:

package com.example.five;
import android.app.Application;
public class MyApp extends Application{
	private int type;
	public int gettype(){
	return type;	
	}
	public void settype(int x){
	this.type=x;
	}
	@Override
	public void onCreate(){
		super.onCreate();
		settype(0);
	}
}
接着在androidManifest.xml文件中指定Application类:

<application   
android:name=".MyApp"     
android:icon="@drawable/icon"     
android:label="@string/app_name"> 
Activity中存值:

((MyApp)getApplication()).settype(1);
Activity中取值:

((MyApp)getApplication()).gettype();
View中取值:

((MyApp)getContext().getApplicationContext()).gettype();

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