总结:android 创建快捷方式的两种方式+判断是否已经创建+删除快捷方式

举报
ShaderJoy 发表于 2021/12/30 01:13:14 2021/12/30
【摘要】 1.   在清单文件里面进行注册:例如: <activity android:name="com.android.master.legend.widget.CreateSystemSettingsWidgetActivity" android:exported="...

1.   在清单文件里面进行注册:例如:


  
  1. <activity
  2. android:name="com.android.master.legend.widget.CreateSystemSettingsWidgetActivity"
  3. android:exported="true"
  4. android:icon="@drawable/ic_switcher_shortcut"
  5. android:label="@string/system_switcher_shortcut"
  6. android:screenOrientation="portrait"
  7. android:theme="@android:style/Theme.Translucent.NoTitleBar" >
  8. <intent-filter>
  9. <action android:name="android.intent.action.CREATE_SHORTCUT" />
  10. <category android:name="android.intent.category.DEFAULT" />
  11. </intent-filter>
  12. </activity>
这样,就会自动加入到 系统launcher的快捷方式里面

2.  手动创建快捷方式


   
  1. public static void createSystemSwitcherShortCut(Context context) {
  2. final Intent addIntent = new Intent(
  3. "com.android.launcher.action.INSTALL_SHORTCUT");
  4. final Parcelable icon = Intent.ShortcutIconResource.fromContext(
  5. context, R.drawable.ic_switcher_shortcut); // 获取快捷键的图标
  6. addIntent.putExtra("duplicate", false);
  7. final Intent myIntent = new Intent(context,
  8. SystemSwitcherActivity.class);
  9. myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  10. addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
  11. context.getString(R.string.switch_widget));// 快捷方式的标题
  12. addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);// 快捷方式的图标
  13. addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, myIntent);// 快捷方式的动作
  14. context.sendBroadcast(addIntent);
  15. }
更具有通用性的写法如下:

   
  1. /**
  2. * 为程序创建桌面快捷方式
  3. */
  4. private void addShortcut(){
  5. Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
  6. //快捷方式的名称
  7. shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
  8. shortcut.putExtra("duplicate", false); //不允许重复创建
  9. /****************************此方法已失效*************************/
  10. //ComponentName comp = new ComponentName(this.getPackageName(), "."+this.getLocalClassName());
  11. //shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));   
  12.      /******************************end*******************************/
  13.      Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
  14.      shortcutIntent.setClassName(this, this.getClass().getName());
  15.      shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
  16. //快捷方式的图标
  17. ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
  18. shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);
  19. sendBroadcast(shortcut);
  20. }


小结:一般做法是在设置里面加上手动创建快捷方式的设置。

            在程序第一次启动的时候,手动创建一次快捷方式。

3.判断是否已经创建了快捷方式(在某些机型中需要判断)


    
  1. private boolean hasShortcut()
  2. {
  3. boolean isInstallShortcut = false;
  4. final ContentResolver cr = activity.getContentResolver();
  5. final String AUTHORITY ="com.android.launcher.settings";
  6. final Uri CONTENT_URI = Uri.parse("content://" +AUTHORITY + "/favorites?notify=true");
  7. Cursor c = cr.query(CONTENT_URI,new String[] {"title","iconResource" },"title=?",
  8. new String[] {mapViewActivity.getString(R.string.app_name).trim()}, null);
  9. if(c!=null && c.getCount()>0){
  10. isInstallShortcut = true ;
  11. }
  12. return isInstallShortcut ;

4.删除


    
  1. /**
  2. * 删除程序的快捷方式
  3. */
  4. private void delShortcut(){
  5. Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT");
  6. //快捷方式的名称
  7. shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
  8. String appClass = this.getPackageName() + "." +this.getLocalClassName();
  9. ComponentName comp = new ComponentName(this.getPackageName(), appClass);
  10. shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
  11. sendBroadcast(shortcut);
  12. }

5.声明权限

在AndroidManifest.xml 文件中声明 创建和删除快捷方式时声明权限

   
  1. <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
  2. <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />


6.一个应用开启多个的问题

现在都很流行在桌面上为自己的应用创建快捷方式,网上也很多例子,但是基本都是同一个,创建快捷方式的手法是对的,但是通过快捷方式开启自己的应用的时候会发现程序菜单里头打开的应用和桌面快捷方式打开的应用竟然不是同一个,这样会导致一个应用开启了多个。
 
一开始从activity的加载模式入手,把默认的activity的加载模式设置成了android:launchMode="singleInstance"   虽然每次都只开启了同一个页面,但是每次都是从新加载的,而不是直接调到已经开启的activity,这个交互很不理想;
 
经过仔细研究log发现,通过桌面快捷方式开启应用和通过程序菜单开启应用的日志信息差了一个东西cat=[android.intent.category.LAUNCHER],通过快捷方式开启应用并没有打印出这个属性,所以就尝试在快捷方式创建的时候给他的intent添加一个属性,
 

   
  1. ComponentName comp = new ComponentName(this.getPackageName(), this.getPackageName() + "." +this.getLocalClassName());
  2. Intent intent = new Intent(Intent.ACTION_MAIN).setComponent(comp);
  3. intent.addCategory(Intent.CATEGORY_LAUNCHER);
  4. shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);

 
其中,关键的就是intent.addCategory(Intent.CATEGORY_LAUNCHER);  完美解决了标题提到的问题!

文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/9042873

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。