欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 隐藏桌面图标【无图标】

程序员文章站 2024-02-17 17:36:46
...

在minifest里面入口的地方添加data方法

Android 隐藏桌面图标【无图标】

scheme一般是全路径,或者是其他什么样的字符串都可以,保证唯一即可

 第三方调起这个应用方法如下:

Intent intent = new Intent();
        ComponentName cn = new ComponentName("anrong.com.mazhanzhu_test_1", "anrong.com.mazhanzhu_test_1.View.Activity_Splash");
        intent.setComponent(cn);
        Uri uri = Uri.parse("anrong.com.mazhanzhu_test_1.View.Activity_Splash");
        intent.setData(uri);
        startActivity(intent);

其实算是一个隐式调用吧