我试图使用intent-filter ACTION_PACKAGE_FIRST_LAUNCH使应用程序在首次启动时执行某些任务,但是它没有被广播接收器捕获
我的清单
这是我的广播接收器实现
this.context = context;
String mAction = intent.getAction();
Log.i("r",mAction);
if (mAction == Intent.ACTION_PACKAGE_DATA_CLEARED) {
} else if (mAction == Intent.ACTION_PACKAGE_FIRST_LAUNCH) {
}
如何在应用程序首次启动时启动它?
最佳答案
对不起那些除了boot_completed之外的意图只发送到游戏商店.但是,做你需要的事情相对简单.而是使用SharedPreferences,例如:
原文链接:https://www.f2er.com/android/430900.htmlpublic static final String KEY_PREFS_FIRST_LAUNCH = "first_launch";
// ...
SharedPreferences prefs = SharedPreferences.getDefaultSharedPreferences(this);
if(prefs.getBoolean(KEY_PREFS_FIRST_LAUNCH,true))
{
//first launch
prefs.edit().putBoolean(KEY_PREFS_FIRST_LAUNCH,false).commit();
}