Android- 隐式启动 以及隐藏app图标

隐藏APP桌面图标


     
           
           
           
     

  • 在manifest的入口activity里面intent-filter中设置元素。
    注:必须添加tools:ignore="AppLinkUrlError",否则会出错,host值为自定义,scheme值为包名

  • dada配置参考:http://www.cnblogs.com/shenhao/p/5947284.html

通过另一个APP隐式启动

Intent intent = new Intent();
ComponentName cn = new ComponentName("com.tuobang.xsfx", "com.tuobang.xsfx.LaunchActivity");
intent.setComponent(cn);
Uri uri = Uri.parse("com.tuobang.xsfx.LaunchActivity");
intent.setData(uri);
startActivity(intent);

 

你可能感兴趣的:(Android- 隐式启动 以及隐藏app图标)