码迷,mamicode.com
首页 > 移动开发 > 详细

Android全局变量使用

时间:2014-06-27 21:28:16      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:android   class   blog   code   java   ext   

1、通过一个Data.java实例类,能够实现全局数据保存,这里就不多说了,学Java的都知道。


2、Android特有的Application,是应用的入口,执行贯穿整个app执行过程,能够在这个类中定义全局变量

public class baseApplication extends Application {
		
	private float screenWidth;
	private float screenHeight;
	
	
	public float getScreenWidth() {
		return screenWidth;
	}
	public void setScreenWidth(float screenWidth) {
		this.screenWidth = screenWidth;
	}
	public float getScreenHeight() {
		return screenHeight;
	}
	public void setScreenHeight(float screenHeight) {
		this.screenHeight = screenHeight;
	}
	
	
}

使用时候直接调用:

        
        baseApplication b=(baseApplication) getApplicationContext();
        float width=b.getScreenWidth();
        float height=b.getScreenHeight();





Android全局变量使用,布布扣,bubuko.com

Android全局变量使用

标签:android   class   blog   code   java   ext   

原文地址:http://www.cnblogs.com/mengfanrong/p/3807407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!