Remove Activity as Default Launcher

后端 未结 4 619
感情败类
感情败类 2020-12-25 08:47

I set my activity as a default launcher to intercept home button clicks like so:



        
4条回答
  •  悲哀的现实
    2020-12-25 09:32

    if it's your app that you're clearing its defaults , you can simply call :

    getPackageManager().clearPackagePreferredActivities(getPackageName());
    

    then , in order to show the dialog of choosing which launcher to use , use:

    final Intent intent=new Intent();
    intent.setAction(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    startActivity(intent);
    

提交回复
热议问题