国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android程序開發之手機APP創建桌面快捷方式

2019-12-12 06:34:55
字體:
來源:轉載
供稿:網友

預覽效果圖:

需要權限:

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

配置文件:AndroidManifest.xml

<activityandroid:name="com.myself.news.activity.GuideActivity"android:label="@string/title_activity_guide" ><intent-filter><action android:name="com.myself.news.ACTION_HOME" /><category android:name="android.intent.category.DEFAULT" /></intent-filter></activity> 

在應用的閃屏頁面Activity的 oncreate方法調用 installShortcut();

代碼:

// 創建快捷方式// com.android.launcher.permission.INSTALL_SHORTCUTprivate void installShortcut() {// 判斷有沒有創建過快捷方式boolean isCreated = SharedPreferencesUtils.getBoolean(this,GlobalConstantsUtils.PREF_IS_SHORTCUT_INTALLED, false);// 判斷是否已經創建過if (!isCreated) {// 發廣播Intent intent = new Intent();intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");// 圖標// 根據資源文件id生成Bitmap對象intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));// 名稱intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "手機安全衛士");// 動作Intent actionIntent = new Intent();// 跳到主頁面actionIntent.setAction(GlobalConstantsUtils.ACTION_HOME);intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, actionIntent);sendBroadcast(intent);// 標記已經創建過快捷方式,下次不再創建SharedPreferencesUtils.setBoolean(this,GlobalConstantsUtils.PREF_IS_SHORTCUT_INTALLED, true);}}

常量工具類GlobalConstantsUtils:

public static final String PREF_IS_SHORTCUT_INTALLED = "is_shortcut_intalled";// 是否已經創建快捷方式 public static final String ACTION_HOME = "com.myself.news.ACTION_HOME";// 跳轉到主頁面的ACTION


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 通河县| 灵璧县| 宽城| 平原县| 龙山县| 昌黎县| 清原| 龙口市| 兴化市| 惠州市| 墨玉县| 张家川| 沁水县| 武强县| 天津市| 清河县| 弥勒县| 上栗县| 凌海市| 河东区| 砀山县| 商城县| 泰安市| 金门县| 黄骅市| 锡林郭勒盟| 宁河县| 鸡东县| 凌云县| 阿克苏市| 武穴市| 浑源县| 剑河县| 定结县| 秀山| 枝江市| 探索| 昌宁县| 依安县| 诸暨市| 昌邑市|