隐藏应用程序,只需要不创建应用的桌面图标即可.1.在AndroidManifest.xml中增加一行代码2.这样程序安装在手机以后就没有桌面图标了,即隐藏起来了。3.如果要启动应用,需要通过广播接收都接收广播,例如开机广播,网络连接广播等,在广播中启动Service即可@Override public void onReceive(Context context, Intent intent) { Intent mBootIntent = new Intent(context, Service.class); context.startService(mBootIntent); }
顶一下
(0)
0%
踩一下
(0)
0%
- 相关评论
- 我要评论
-