Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 手機APP創建桌面快捷方式,app創建快捷方式

手機APP創建桌面快捷方式,app創建快捷方式

編輯:關於android開發

手機APP創建桌面快捷方式,app創建快捷方式


 

 

預覽:

 

需要權限:

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

 

配置文件:AndroidManifest.xml

1  <activity
2             android:name="com.myself.news.activity.GuideActivity"
3             android:label="@string/title_activity_guide" >
4             <intent-filter>
5                 <action android:name="com.myself.news.ACTION_HOME" />
6 
7                 <category android:name="android.intent.category.DEFAULT" />
8             </intent-filter>
9         </activity>

 

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

代碼:

 1 // 創建快捷方式
 2     // com.android.launcher.permission.INSTALL_SHORTCUT
 3     private void installShortcut() {
 4         // 判斷有沒有創建過快捷方式
 5         boolean isCreated = SharedPreferencesUtils.getBoolean(this,
 6                 GlobalConstantsUtils.PREF_IS_SHORTCUT_INTALLED, false);
 7         // 判斷是否已經創建過
 8         if (!isCreated) {
 9             // 發廣播
10             Intent intent = new Intent();
11             intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
12 
13             // 圖標
14             // 根據資源文件id生成Bitmap對象
15             intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory
16                     .decodeResource(getResources(), R.drawable.ic_launcher));
17             // 名稱
18             intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "手機安全衛士");
19 
20             // 動作
21             Intent actionIntent = new Intent();
22             // 跳到主頁面
23             actionIntent.setAction(GlobalConstantsUtils.ACTION_HOME);
24 
25             intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, actionIntent);
26             sendBroadcast(intent);
27 
28             // 標記已經創建過快捷方式,下次不再創建
29             SharedPreferencesUtils.setBoolean(this,
30                     GlobalConstantsUtils.PREF_IS_SHORTCUT_INTALLED, true);
31         }
32     }

 

常量工具類GlobalConstantsUtils:

 

 1 public static final String PREF_IS_SHORTCUT_INTALLED = "is_shortcut_intalled";// 是否已經創建快捷方式 

 1 public static final String ACTION_HOME = "com.myself.news.ACTION_HOME";// 跳轉到主頁面的ACTION 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved