Android,android官網

來源:互聯網
上載者:User

Android,android官網
添加                                                                                   

添加捷徑是向案頭應用(launcher)發送相關action的廣播:

public static final String ACTION_ADD_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";

Code:

private void addShortcut(String name) {        Intent addShortcutIntent = new Intent(ACTION_ADD_SHORTCUT);        // 不允許重複建立        addShortcutIntent.putExtra("duplicate", false);// 經測試不是根據捷徑的名字判斷重複的    
// 名字        addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);        // 表徵圖        addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,                Intent.ShortcutIconResource.fromContext(MainActivity.this,                        R.drawable.ic_launcher));        // 設定關聯程式        Intent launcherIntent = new Intent(Intent.ACTION_MAIN);        launcherIntent.setClass(MainActivity.this, MainActivity.class);        launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER);        addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launcherIntent);        // 發送廣播        sendBroadcast(addShortcutIntent);    }
移除                                                                                   

action:

public static final String ACTION_REMOVE_SHORTCUT = "com.android.launcher.action.UNINSTALL_SHORTCUT";

Code:

private void removeShortcut(String name) {        Intent intent = new Intent(ACTION_REMOVE_SHORTCUT);        // 名字        intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);        // 設定關聯程式        Intent launcherIntent = new Intent(MainActivity.this,MainActivity.class).setAction(Intent.ACTION_MAIN);        intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launcherIntent);        // 發送廣播        sendBroadcast(intent);    }

 

許可權                                                                                   
<!-- 添加捷徑 -->    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />    <!-- 移除捷徑 -->    <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
我是天王蓋地虎的分割線                                                             

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.