安装后隐藏android应用程序图标

前端之家收集整理的这篇文章主要介绍了安装后隐藏android应用程序图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经看到Google应用程序上有一些GPS应用程序,安装后,应用程序将没有图标显示,但将在后台运行服务.

我怎么做到这一点?

解决方法

要从Launcher中删除Application,请不要将这些行与主Activity放在 AndroidManifest.xml中
<intent-filter>
  <action android:name="android.intent.action.MAIN" />
  <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

如果你想以编程方式删除它,那么使用PackageManager.setComponentEnabledSetting从Launcher中删除它:

ComponentName componentToDisable =
  new ComponentName("com.xxx.apptodisable","com.xxx.apptodisable.LauncherActivity");

  getPackageManager().setComponentEnabledSetting(
  componentToDisable,PackageManager.COMPONENT_ENABLED_STATE_DISABLED,PackageManager.DONT_KILL_APP);
原文链接:https://www.f2er.com/android/308864.html

猜你在找的Android相关文章