android 如何定义全局变量
5个回答
展开全部
找到一个和我有类似需求的问题,其下给出了不错的解决方案,也正是我之前想到的,这种方法貌似很方便。
The more general problem you are encountering is how to save stateacross several Activities and all parts of your application. A staticvariable (for instance, a singleton) is a common Java way of achievingthis. I have found however, that a more elegant way in Android is toassociate your state with the Application context.
--如想在整个应用中使用,在java中一般是使用静态变量,而在android中有个更优雅的方式是使用Application context。
As you know, each Activity is also a Context, which is informationabout its execution environment in the broadest sense. Your applicationalso has a context, and Android guarantees that it will exist as asingle instance across your application.
--每个Activity 都是Context,其包含了其运行时的一些状态,android保证了其是single instance的。
The way to do this is to create your own subclass of android.app.Application,and then specify that class in the application tag in your manifest.Now Android will automatically create an instance of that class andmake it available for your entire application. You can access it fromany context using the Context.getApplicationContext() method (Activityalso provides a method getApplication() which has the exact sameeffect):
--方法是创建一个属于你自己的android.app.Application的子类,然后在manifest中申明一下这个类,这是 android就为此建立一个全局可用的实例,你可以在其他任何地方使用Context.getApplicationContext()方法获取这个实例,进而获取其中的状态(变量)。
展开全部
你可以在任意一个.java文件中定义全局变量,定义成
public static final 的就可以了,比如可以在MyApplication中定义:
public static final boolean DEBUG = false;
public static final 的就可以了,比如可以在MyApplication中定义:
public static final boolean DEBUG = false;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、新建一个类
2、在类里面建一些 public static final 的变量
3、在需要调用的地方,类名.变量名,即可调用
2、在类里面建一些 public static final 的变量
3、在需要调用的地方,类名.变量名,即可调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以直接建一个类GlobalInfo
public static String name;
调用:GlobalInfo.name
官方建议自己建一个类继承Application
使用方法参考http://blog.csdn.net/feiyangxiaomi/article/details/9966215
public static String name;
调用:GlobalInfo.name
官方建议自己建一个类继承Application
使用方法参考http://blog.csdn.net/feiyangxiaomi/article/details/9966215
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-25
展开全部
你搜一下android Application就知道了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询