当前位置:   article > 正文

Android设置或清除默认桌面_android清除默认launcher设置

android清除默认launcher设置

配置桌面程序

  1. <activity android:name=".ui.main.MainActivity">
  2. <intent-filter>
  3. <action android:name="android.intent.action.MAIN" />
  4. <category android:name="android.intent.category.LAUNCHER" />
  5. <category android:name="android.intent.category.HOME" />
  6. <category android:name="android.intent.category.DEFAULT" />
  7. </intent-filter>
  8. </activity>

打开应用选择器

  1. public static void openResolverLauncher(Context context) {
  2. // 华为手机上
  3. Intent intent = new Intent(Intent.ACTION_MAIN);
  4. intent.addCategory(Intent.CATEGORY_HOME);
  5. intent.addCategory(Intent.CATEGORY_DEFAULT);
  6. intent.setComponent(new ComponentName("com.huawei.android.internal.app", "com.huawei.android.internal.app.HwResolverActivity"));
  7. context.startActivity(intent);
  8. // 大部分手机上
  9. Intent intent = new Intent(Intent.ACTION_MAIN);
  10. intent.addCategory(Intent.CATEGORY_HOME);
  11. intent.addCategory(Intent.CATEGORY_DEFAULT);
  12. intent.setClassName("android", "com.android.internal.app.ResolverActivity");
  13. context.startActivity(intent);
  14. }

跳转打开应用选择器,根据仅此一次或总是两种结果选择需要打开的桌面选择器,当使用仅此一次打开桌面时,默认的桌面程序并未被设置,下次按HOME键还会弹出应用选择器选择要打开的桌面程序。该方法如果用在无人值守终端设备上并不是很友好,重启后弹出应用选择器将无法启动终端程序。

设置默认桌面程序

  1. public static void setDefaultLauncher(Context context, String defPackageName, String defClassName) {
  2. try {
  3. if (!TextUtils.isEmpty(defPackageName) && !TextUtils.isEmpty(defClassName)) {
  4. IntentFilter filter = new IntentFilter();
  5. filter.addAction("android.intent.action.MAIN");
  6. filter.addCategory("android.intent.category.HOME");
  7. filter.addCategory("android.intent.category.DEFAULT");
  8. Intent intent = new Intent(Intent.ACTION_MAIN);
  9. intent.addCategory(Intent.CATEGORY_HOME);
  10. // 返回给定条件的所有ResolveInfo对象(本质上是Activity)
  11. List<ResolveInfo> list = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
  12. int bestMatch = 0;
  13. final int size = list.size();
  14. ComponentName[] set = new ComponentName[size];
  15. for (int i = 0; i < size; i++) {
  16. ResolveInfo ri = list.get(i);
  17. set[i] = new ComponentName(ri.activityInfo.packageName, ri.activityInfo.name);
  18. if (ri.match > bestMatch) {
  19. bestMatch = ri.match;
  20. }
  21. }
  22. ComponentName preActivity = new ComponentName(defPackageName, defClassName);
  23. context.getPackageManager().addPreferredActivity(filter, bestMatch, set, preActivity);
  24. }
  25. } catch (java.lang.SecurityException e) {
  26. e.printStackTrace();
  27. }
  28. }

调用如下:

  1. String defPackageName = "com.demo";
  2. String defClassName = "com.demo.ui.main.MainActivity";
  3. setDefaultLauncher(context, defPackageName, defClassName );

使用此方法可以在未设置默认桌面程序的情况下可以直接设置默认桌面,无需跟用户进行交互,但是需要获取系统权限:

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.demo"
  3. android:sharedUserId="android.uid.system">
  4. <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />

要获取系统权限就需要进行系统签名,系统签名可参考:https://blog.csdn.net/hwx865/article/details/72291792

清除默认桌面程序

  1. public static void clearDefaultLauncher(Context context) {
  2. try {
  3. ArrayList<IntentFilter> intentList = new ArrayList<IntentFilter>();
  4. ArrayList<ComponentName> cnList = new ArrayList<ComponentName>();
  5. context.getPackageManager().getPreferredActivities(intentList, cnList, null);
  6. for (int i = 0; i < cnList.size(); i++) {
  7. IntentFilter dhIF = intentList.get(i);
  8. if (dhIF.hasAction(Intent.ACTION_MAIN) && dhIF.hasCategory(Intent.CATEGORY_HOME)) {
  9. //清除原有的默认launcher
  10. context.getPackageManager().clearPackagePreferredActivities(cnList.get(i).getPackageName());
  11. }
  12. }
  13. } catch (java.lang.SecurityException e) {
  14. e.printStackTrace();
  15. }
  16. }

使用该方法清除默认桌面程序后方可设置默认桌面程序,调用该方法同样需要获取系统权限。

判断是否默认桌面程序

  1. public static boolean isDefaultLauncher(Context context) {
  2. Intent intent = new Intent(Intent.ACTION_MAIN);
  3. intent.addCategory("android.intent.category.HOME");
  4. intent.addCategory("android.intent.category.DEFAULT");
  5. PackageManager pm = context.getPackageManager();
  6. ResolveInfo info = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
  7. boolean isDefault = context.getPackageName().equals(info.activityInfo.packageName);
  8. return isDefault;
  9. }

用于判断当前程序是否是默认桌面程序,如果设置了默认桌面程序info.activityInfo.packageName获取的是包名,如未设置默认桌面程序返回的是"android"字符串,该方法不需要获取系统权限。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/144761
推荐阅读