android – 如何使用ACTION_PACKAGE_FIRST_LAUNCH intent-filter启动应用程序?

前端之家收集整理的这篇文章主要介绍了android – 如何使用ACTION_PACKAGE_FIRST_LAUNCH intent-filter启动应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图使用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,例如:

public 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();
}
原文链接:https://www.f2er.com/android/430900.html

猜你在找的Android相关文章