隐藏APK在Launcher中的启动图标 android开发教程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏APK在Launcher中的启动图标 android开发教程相关的知识,希望对你有一定的参考价值。
隐藏APK在Launcher中的启动图标:
APK的androidManifest.xml文件的主Activity中删除 intent-filter 中的
<category android:name="android.intent.category.LAUNCHER" />即可。
查看该APK是否安装成功:
查看Settings -> Apps -> All的应用程序列表
启动该APK方法:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.my.demo","com.my.demo.MainActivity"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
以上是关于隐藏APK在Launcher中的启动图标 android开发教程的主要内容,如果未能解决你的问题,请参考以下文章
android framework项目开发案例-动态隐藏Launcher上图标