众所周知application有4种启动方式: 点击app启动 快捷方式 通知跳转 输入命令(adb命令等) 今天给大家简单介绍一下快捷方式启动的
众所周知application有4种启动方式:
今天给大家简单介绍一下快捷方式启动的用法~
谷歌官方在Android 7.1(api 25)新增了桌面长按弹出菜单,并且在8.0(API 26)以后可以固定快捷方式至桌面上。围绕桌面快捷方式的需求也比较多,例如微信将联系人、小程序都可以添加至桌面;简书将“写文章”添加至桌面;高德将“坐标信息”添加到桌面。
将某个应用添加到桌面
长按应用打开某一个功能
先看代码,后面我会将这些代码写成工具类供大家使用:
public void AddShortCut(Context context, Class targetClass, Class backClass, int shortCutId, int shortCutIcon) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
ShortcutManager shortcutManager = (ShortcutManager) context.getSystemService(Context.SHORTCUT_SERVICE);
if (shortcutManager != null && shortcutManager.isRequestPinShortcutSupported()) {
Intent shortcutInfoIntent = new Intent(context, targetClass);
shortcutInfoIntent.setAction(Intent.ACTION_VIEW);
ShortcutInfo info = new ShortcutInfo.Builder(context, "id" + shortCutId)
.setIcon(Icon.createWithResource(context, shortCutIcon)).
setShortLabel(titles[shortCutId]).setIntent(shortcutInfoIntent).build();
PendingIntent shortcutCallbackIntent = PendingIntent.getBroadcast(context, 0, new Intent(context, backClass), PendingIntent.FLAG_UPDATE_CURRENT);
shortcutManager.requestPinShortcut(info, shortcutCallbackIntent.getIntentSender());
}
} else {
Toast.makeText(context, "设备不支持在桌面创建快捷图标!", Toast.LENGTH_LONG).show();
}
}
测试:
shortUtil.AddShortCut(
this,
MainActivity::class.java,
MainActivity::class.java,
2,
R.drawable.ic_launcher_background
)
效果图(1.1):
public void updItem(Context context, Class<?> cls, int shortCutId, int shortCutIcon, String shortCutLabel) {
Intent intent = new Intent(context, cls);
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra("msg", titles[shortCutId]);
ShortcutInfo info = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
info = new ShortcutInfo.Builder(context, "id" + shortCutId)
.setIcon(Icon.createWithResource(context, shortCutIcon))
.setShortLabel(shortCutLabel)
.setIntent(intent)
.build();
sm.updateShortcuts(Arrays.asList(info));
}
}
测试:
shortUtil.updItem(
this,
ModifyActivity::class.java,
2,
R.drawable.ic_launcher_background,
"修改快捷方式成功"
)
效果图(1.2)
:
public void remove(int index) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
sm.removeAllDynamicShortcuts();
List<String> list = new ArrayList<String>();
list.add("id" + index);
sm.disableShortcuts(list);
}
}
测试:
shortUtil.remove(2)
效果图(1.3)
:
这里以Fragment举例:
先来看看最终的效果:
主要代码:
private static int[] icons = {R.drawable.ic_launcher_background, R.drawable.ic_launcher_foreground, R.drawable.ic_launcher_background, R.drawable.ic_launcher_foreground,};
private static String[] titles = {"首页", "我的", "详情", "设置"};
public void setShortCuts(Context context, Class ast) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
ArrayList<ShortcutInfo> list = new ArrayList<>();
for (int i = 0; i < titles.length; i++) {
Intent intent = new Intent(context, ast);
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra("msg", titles[i]);
intent.putExtra(SHORTCUT_TAB_INDEX, i);
intent.addCateGory("android.intent.category.LAUNCHER");
ShortcutInfo build = new ShortcutInfo.Builder(context, "id" + i)
.setShortLabel(titles[i])
.setLongLabel(titles[i])
.setIcon(Icon.createWithResource(context, icons[i]))
.setIntent(intent)
.build();
list.add(build);
}
sm.setDynamicShortcuts(list);
} else {
Toast.makeText(context, "该设备不支持快捷方式", Toast.LENGTH_SHORT).show();
}
}
在Application中注册一下:
记得在清单文件声明哦
// 保存按钮
val radiolist = listOf(radioButton1, radioButton2, radioButton3, radioButton4)
//快捷方式打开
initShort {
val arg0 = intent?.extras?.getInt(ShortCutUtil.SHORTCUT_TAB_INDEX)
if (arg0 != null) {
val let = arg0.let {
radioGroup.getChildAt(it)
}
val bun = Bundle()
bun["title"] = (let as RadioButton).text as String
//传值
blankFragment.setArguments(bun)
radiolist[arg0].isChecked = true
}
}
private fun initShort(arg0: () -> Unit) {
arg0.invoke()
}
private operator fun Bundle.set(key: String, value: String) {
this.putString(key, value)
}
注意:这段代码使用Kotlin写的,因为刚创建项目的时候只能创建kotlin,我就懒的改了
Fragment代码很简单,通过Arguments获取到值赋值到TextView上即可这里就不贴代码了
以上就是浅谈Android添加快捷方式ShortCut的详细内容,更多关于Android快捷方式的资料请关注编程网其它相关文章!
--结束END--
本文标题: 浅谈Android添加快捷方式ShortCut
本文链接: https://lsjlt.com/news/123232.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0