Android中 Application的使用
Posted 新年新气象934060369
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中 Application的使用相关的知识,希望对你有一定的参考价值。
Application全局唯一,如果需要放置全局的变量,需要用到Application,类似于OC中的单例类,获者OC中的AppDelegate
第一步:创建一个AppContext继承Application
public class AppContext extends Application {
private static AppContext instance; public static AppContext getInstance() { return instance; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); instance = this; } }
第二步:注册
<application android:name=".AppContext" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" >
如果我们需要获取Context:
AppContext.getInstance().getExternalFilesDir(null);
以上是关于Android中 Application的使用的主要内容,如果未能解决你的问题,请参考以下文章
Android中Context的理解及使用——Application的用途
在Android中如何使用全局变量--Application context (转)
android中application中一执行stopservice就报nullpointerexception怎么回事?