Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android--手機桌面增加網址鏈接圖標(解決方案二)

android--手機桌面增加網址鏈接圖標(解決方案二)

編輯:關於Android編程

前一篇文章主要是通過打開app來實現打開網址的功能,雖然實現起來比較簡單,但從效果上來說還是有缺陷。

本文將借助於Broadcast廣播機制來實現桌面圖標鏈接網址的功能,不僅效果好,而且最大的優點就是不用再借助於app應用來打開網站了。

實現步驟如下:

1、在AndroidManifest.xml配置文件中添加權限:

    
    

2、在MainActivity中的OnCreate方法中設置和添加廣播監聽Intent:

		final Intent shortCutIntent = new Intent(
				"com.android.launcher.action.INSTALL_SHORTCUT");
		final Parcelable icon = ((BitmapDrawable)context.getResources().getDrawable(R.drawable.ic_launcher)).getBitmap(); // 獲取快捷鍵的圖標
		Uri uri = Uri.parse("http://blog.csdn.net/wanggsx918");    
		Intent pendingIntent = new Intent(Intent.ACTION_VIEW, uri);
		//桌面快捷方式圖標
		shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON, icon);
		//桌面快捷方式標題
		shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
				context.getString(R.string.app_name));
		//桌面快捷方式動作:點擊圖標時的動作
		shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, pendingIntent);
		context.sendBroadcast(shortCutIntent);

沒錯,此種實現方式既正宗,又完美。要的就是這個口味!

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