gpt4 book ai didi

android 为应用程序创建桌面快捷方式技巧分享

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章android 为应用程序创建桌面快捷方式技巧分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

我们开发一款软件后,如果手机装的软件过多,去翻的话会很难翻的,所以,在主页面有一个快捷方式的话会很不错的,下面是详细代码:

复制代码 代码如下

/** * 创建桌面快捷方式 */ private void createShortcut() { SharedPreferences setting = getSharedPreferences("silent.preferences", 0); // 判断是否第一次启动应用程序(默认为true) boolean firstStart = setting.getBoolean("FIRST_START", true); // 第一次启动时创建桌面快捷方式 if (firstStart) { Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); // 快捷方式的名称 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name2)); // 不允许重复创建 shortcut.putExtra("duplicate", false); // 指定快捷方式的启动对象 ComponentName comp = new ComponentName(this.getPackageName(), "." + this.getLocalClassName()); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); // 快捷方式的图标 ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.zhangxy); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); // 发出广播 sendBroadcast(shortcut); // 将第一次启动的标识设置为false Editor editor = setting.edit(); editor.putBoolean("FIRST_START", false); // 提交设置 editor.commit(); } } 。

然后在onCreate()方法里加上上面方法名称就行了:

复制代码 代码如下

// 安装后第一次启动时创建桌面快捷方式 createShortcut(),

最后在AndroidManifest.xml里加上创建快捷方式的权限就行了:

复制代码 代码如下

<!-- 创建桌面快捷方式的权限 --> <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> 。

最后此篇关于android 为应用程序创建桌面快捷方式技巧分享的文章就讲到这里了,如果你想了解更多关于android 为应用程序创建桌面快捷方式技巧分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com