`
天天向上1989
  • 浏览: 412725 次
  • 性别: Icon_minigender_2
  • 来自: 南京
社区版块
存档分类
最新评论

【转】android使用全局变量

阅读更多
public class MyApp extends Application
{
	private Integer[] state;

	public Integer[] getState()
	{
		return state;
	}

	public void setState(Integer[] state)
	{
		this.state = state;
	}

	@Override
	public void onCreate()
	{
		super.onCreate();
		
		// 一定要在onCreate方法里给变量赋值
		setState(we);
	}

	public Integer[] we = new Integer[]
	{
		R.drawable.btn_normal, R.drawable.btn_press, R.drawable.btn_selector,
		R.drawable.icon
	};

}

 

在所需要的activity中使用
 MyApp appState = (MyApp)getApplicationContext();
 Integer[] we = appState.getState();
 来获取,最后一步别忘了在manifest中的application标签中添加

android:name=".MyApp"(这儿不是新建<application></application>)

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics