編輯:關於Android編程
android的快捷方式比較簡單,就是發一個系統的廣播,然後為快捷方式設置Intent---
package com.xikang.android.slimcoach.utils; /** * @author huiych * 創建快捷方式 * @created 2013-02-21 * */ import android.content.Intent; import android.os.Parcelable; import com.xikang.android.slimcoach.AppXiKang; import com.xikang.android.slimcoach.R; import com.xikang.android.slimcoach.ui.AppStart; public class ShortCutUtil { public static void initShortCut(){ Intent addShortCut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); //不能重復創建快捷方式 addShortCut.putExtra("duplicate", false); String title = AppXiKang.getApp().getString(R.string.app_name);//名稱 Parcelable icon = Intent.ShortcutIconResource.fromContext(AppXiKang.getApp(), R.drawable.icon);//圖標 //點擊快捷方式後操作Intent,快捷方式建立後,再次啟動該程序 Intent intent = new Intent(AppXiKang.getApp(), AppStart.class); //設置快捷方式的標題 addShortCut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title); //設置快捷方式的圖標 addShortCut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon); //設置快捷方式對應的Intent addShortCut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent); //發送廣播添加快捷方式 AppXiKang.getApp().sendBroadcast(addShortCut); } }
AppXiKange.getApp(),是獲取Activity對象。
注意,要在清單文件中設置權限
復制代碼 代碼如下:<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
這樣在希望增加快捷方式的時候,就可以給用戶一個alertdialog,提示,然後引用。就可以了。
市場上也有很多應用是在應用安裝的時候直接創建快捷方式。不過這樣的實現不是很友好。不建議使用。
下面上個完整的代碼演示,使用的方法和上面的稍有不同:
public class ShortCutUtil { public static void initShortCut(Activity acti){ Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); //快捷方式的名稱 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, AppXiKang.getApp().getString(R.string.app_name)); shortcut.putExtra("duplicate", false); //不允許重復創建 //指定當前的Activity為快捷方式啟動的對象: 如 //com.everest.video.VideoPlayer //注意: ComponentName的第二個參數必須加上點號(.),否則快捷方式無法啟動相應程序 ComponentName comp = new ComponentName(AppXiKang.getApp().getPackageName(), "."+acti.getLocalClassName()); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); //快捷方式的圖標 ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(AppXiKang.getApp(), R.drawable.icon); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); AppXiKang.getApp().sendBroadcast(shortcut); } public static void delShortcut(Activity acti){ Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT"); //快捷方式的名稱 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, AppXiKang.getApp().getString(R.string.app_name)); String appClass = AppXiKang.getApp().getPackageName() + "." +acti.getLocalClassName(); ComponentName comp = new ComponentName(AppXiKang.getApp().getPackageName(), appClass); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); AppXiKang.getApp().sendBroadcast(shortcut); } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。
獲取正在運行的程序並把它加入到一個listview的adapter類面,方法如下: // 正在運行的 public List getRunningProcess()
本文實例講述了android通過Location API顯示地址信息的實現方法。分享給大家供大家參考。具體如下:android的Locatin API,可以通過Geoco
Android中的Toast是很常見的一個消息提示框,但是默認的消息提示框就是一行純文本,所以我們可以為它設置一些其他的諸如是帶上圖片的消息提示。 實現這個很簡單: 就是
這篇文章開始, 我們來了解一下android 7的一些新特性, 話說今年android 7預覽版本來的比以往都稍早一些, 這樣對於我們開發者來說算是一個好消息, 我們可以