宁可枝头抱香死,何曾吹落北风中。这篇文章主要讲述Android设置全局Context相关的知识,希望能为你提供帮助。
新建一个java继承Application类
import android.app.Application; import android.content.Context; /** * 编写自定义Application,管理全局状态信息,比如Context * @author autumn */ public class MyApplication extends Application { private static Context context; @Override public void onCreate() { super.onCreate(); //获取Context context = getApplicationContext(); }//返回 public static Context getContextObject(){ return context; } }
在AndroidManifest.xml中注册,在application标签中添加android:name="com.***.MyApplication"即可
< application android:name="com.***.MyApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> < /application>
【Android设置全局Context】调用获取全局Context
MyApplication.getContextObject();
推荐阅读
- APP开发公司排名你知多少?
- 安卓本地化之SharedPreferences
- Win10更新KB4304674无法安装更新正在撤销更改的处理办法
- Win10小娜界面的广告怎样去掉?Win10禁用小娜推广广告的办法
- Win10新版1709推送更新出错0x80070020怎样处理?
- Win10系统没有terminal service服务该怎样办?
- win10系统groove无法播放0x8007007e的处理办法
- Win10 16299 Edge无法加载滑动验证码该怎样办?
- Win10系统baidunetdisk 占用磁盘100%该怎样办?