--如想在整个应用中使用,在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()方法获取这个实例,进而获取其中的状态(变量)。

给个例子:

  1. class MyApp extends Application {

  2. private String myState;

  3. public String getState(){
  4. return myState;
  5. }
  6. public void setState(String s){
  7. myState = s;
  8. }
  9. }

  10. class Blah extends Activity {

  11. @Override
  12. public void onCreate(Bundle b){
  13. ...
  14. MyApp appState = ((MyApp)getApplicationContext());
  15. String state = appState.getState();
  16. ...
  17. }
  18. }
复制代码

This has essentially the same effect as using a static variable orsingleton, but integrates quite well into the existing Androidframework. Note that this will not work across processes (should yourapp be one of the rare ones that has multiple processes).
--这个效果就是使用静态变量是一样的,但是其更符合android的架构体系。

更多相关文章

  1. android activity向fragment通信,获取fragment的三种方法
  2. Android中阻止AlertDialog关闭实例代码
  3. 【Android(安卓)NDK 开发】Android(安卓)Studio 使用 CMake 导入
  4. Android(安卓)Intent机制实例详解(1)
  5. Android中 @id 与 @+id 区别
  6. [置顶] Android(安卓)动画:你真的会使用插值器与估值器吗?(含详细实
  7. 高效android编程
  8. Android(安卓)侧滑关闭Activity的实例
  9. 注册广播的两种方式:动态广播和静态广播的区别和用法

随机推荐

  1. Android(安卓)连接WIF获取的信息剖析
  2. okhttp的应用详解与源码解析--android网
  3. [笔记] android/iOS自动化测试神器Appium
  4. 最新Android开发视频教程(共6章)Android(安
  5. React Native封装Android原生UI和Android
  6. Android平台中进程与线程的基本知识
  7. Android:WebView与Javascript交互(相互调用
  8. 在 Android(安卓)上使用协程(三) :Real Work
  9. Android休眠机制
  10. 简析Android对Linux内核的改动