JavaShuo
欄目
標籤
Android Create Shortcut 桌面 快捷方式 圖標
時間 2019-11-18
標籤
android
create
shortcut
桌面
快捷方式
圖標
欄目
Android
简体版
原文
原文鏈接
Add permission:
html
[html]
view plain
copy
<EMBED id=ZeroClipboardMovie_1 height=18 name=ZeroClipboardMovie_1 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=1&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">
<
uses-permission
android:name
=
"com.android.launcher.permission.INSTALL_SHORTCUT"
/>
<
uses-permission
android:name
=
"com.android.launcher.permission.UNINSTALL_SHORTCUT"
/>
Code:
java
[java]
view plain
copy
<EMBED id=ZeroClipboardMovie_2 height=18 name=ZeroClipboardMovie_2 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=2&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">
private
void
setUpShortCut() {
Intent intent =
new
Intent(CREATE_SHORTCUT_ACTION);
// 設置快捷方式圖片
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(
this
, R.drawable.logo));
// 設置快捷方式名稱
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
"sina"
);
// 設置是否容許重複建立快捷方式 false表示不容許
intent.putExtra(
"duplicate"
,
false
);
// 設置快捷方式要打開的intent
// 第一種方法建立快捷方式要打開的目標intent
Intent targetIntent =
new
Intent();
// 設置應用程序卸載時同時也刪除桌面快捷方式
targetIntent.setAction(Intent.ACTION_MAIN);
targetIntent.addCategory(
"android.intent.category.LAUNCHER"
);
ComponentName componentName =
new
ComponentName(getPackageName(),
this
.getClass().getName());
targetIntent.setComponent(componentName);
// 第二種方法建立快捷方式要打開的目標intent
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, targetIntent);
// 發送廣播
sendBroadcast(intent);
}
private
void
tearDownShortCut() {
Intent intent =
new
Intent(DROP_SHORTCUT_ACTION);
// 指定要刪除的shortcut名稱
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
"sina"
);
String appClass = getPackageName() +
"."
+
this
.getLocalClassName();
ComponentName component =
new
ComponentName(getPackageName(), appClass);
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
new
Intent().setAction(Intent.ACTION_MAIN).setComponent(component));
sendBroadcast(intent);
}
Or:
android
[java]
view plain
copy
<EMBED id=ZeroClipboardMovie_3 height=18 name=ZeroClipboardMovie_3 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=3&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">
if
(Intent.ACTION_CREATE_SHORTCUT.equals(action))
{
setupShortcut();
finish();
return
;
}
...
private
void
setupShortcut() {
// First, set up the shortcut intent.
//For this example, we simply create an intent that
// will bring us directly back to this activity.
//A more typical implementation would use a
// data Uri in order to display a more specific result,
//or a custom action in order to
// launch a specific operation.
Intent shortcutIntent =
new
Intent(Intent.ACTION_MAIN);
shortcutIntent.setClassName(
this
,
this
.getClass().getName());
shortcutIntent.putExtra(EXTRA_KEY,
"ApiDemos Provided This Shortcut"
);
// Then, set up the container intent (the response to the caller)
Intent intent =
new
Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcut_name));
Parcelable iconResource = Intent.ShortcutIconResource.fromContext(
this
, R.drawable.app_sample_code);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
// Now, return the result to the launcher
setResult(RESULT_OK, intent);
}
上一篇
獲取system系統調用的輸出
下一篇
CPU 測速(MHz)和高精度延時(微秒級)
相關文章
1.
Android 添加、移除和判斷 桌面快捷方式圖標
2.
清除桌面快捷方式小圖標的超快方法
3.
Android O添加桌面快捷方式
4.
Android 7.0新特性——桌面長按圖標出現快捷方式
5.
桌面快捷方式去角標
6.
安卓桌面快捷方式
7.
Android 8.0 創建桌面快捷方式
8.
android 建立 刪除桌面快捷方式
9.
win10桌面快捷方式圖標變白的解決方法
10.
Android 添加桌面快捷方式操做
更多相關文章...
•
Eclipse 快捷鍵
-
Eclipse 教程
•
ionic icon(圖標)
-
ionic 教程
•
IntelliJ IDEA 代碼格式化配置和快捷鍵
•
常用的分佈式事務解決方案
相關標籤/搜索
快捷方式
shortcut
快捷
create
桌面
方方面面
圖快
圖標
標圖
Android
MySQL教程
PHP教程
Redis教程
面試
設計模式
委託模式
0
分享到微博
分享到微信
分享到QQ
每日一句
每一个你不满意的现在,都有一个你没有努力的曾经。
最新文章
1.
說說Python中的垃圾回收機制?
2.
螞蟻金服面試分享,阿里的offer真的不難,3位朋友全部offer
3.
Spring Boot (三十一)——自定義歡迎頁及favicon
4.
Spring Boot核心架構
5.
IDEA創建maven web工程
6.
在IDEA中利用maven創建java項目和web項目
7.
myeclipse新導入項目基本配置
8.
zkdash的安裝和配置
9.
什麼情況下會導致Python內存溢出?要如何處理?
10.
CentoOS7下vim輸入中文
本站公眾號
歡迎關注本站公眾號,獲取更多信息
相關文章
1.
Android 添加、移除和判斷 桌面快捷方式圖標
2.
清除桌面快捷方式小圖標的超快方法
3.
Android O添加桌面快捷方式
4.
Android 7.0新特性——桌面長按圖標出現快捷方式
5.
桌面快捷方式去角標
6.
安卓桌面快捷方式
7.
Android 8.0 創建桌面快捷方式
8.
android 建立 刪除桌面快捷方式
9.
win10桌面快捷方式圖標變白的解決方法
10.
Android 添加桌面快捷方式操做
>>更多相關文章<<