Android中创建快捷方式代码实例
1、添加权限(必须)
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
2、添加快捷键
public static void setupShortcut(Activity activity)
{
Intent shortcutIntent = new Intent(activity, MainActivity.class); //启动首页(launcher Activity)
Intent intent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "hello");//快捷键名字可以任意,不过最好为app名称
Parcelable iconResource = Intent.ShortcutIconResource.fromContext(activity, R.drawable.ic_launcher);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
intent.putExtra("duplicate", false);//不允许重复创建
activity.sendBroadcast(intent);//发送广播创建快捷键
}
3、快捷键也可以指向非Launcher activity,只需要在AndroidManifest中对应的Activity 中添加如下配置
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<intent-filter>
例如可以将2 中的MainActivity 改为任意其他Activity,同时在AndroidManifest中对应添加上述intent-filter就可以了。
- Android 创建/验证/删除桌面快捷方式(已测试可用)
- android 为应用程序创建桌面快捷方式技巧分享
- 解析Android应用启动后自动创建桌面快捷方式的实现方法
- Android的Launcher启动器中添加快捷方式及小部件实例
- Android添加(创建)、删除及判断是否存在桌面快捷方式的方法
- Android通过应用程序创建快捷方式的方法
- Android实现向Launcher添加快捷方式的方法
- android编程实现为程序创建快捷方式的方法
- Android应用创建桌面快捷方式代码
- Android中创建快捷方式及删除快捷方式实现方法
- Android应用创建多个快捷方式
- Android编程实现向桌面添加快捷方式的方法
- Android编程实现创建,删除,判断快捷方式的方法
相关文章
Android Java try catch 失效问题及解决
这篇文章主要介绍了Android Java try catch 失效问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-11-11Android启动初始化方案App StartUp的应用详解
这篇文章主要介绍了Android启动初始化方案App StartUp的使用方法,StartUp是为了App的启动提供的一套简单、高效的初始化方案,下面我们来详细了解2022-09-09
最新评论