android--手機桌面添加網址鏈接圖標(解決方式二)
阿新 • • 發佈:2017-06-02
解決 eat ring java ndb resources mission dbr 快捷鍵
2、在MainActivity中的OnCreate方法中設置和加入廣播監聽Intent:
沒錯,此種實現方式既正宗,又完美。要的就是這個口味。
前一篇文章主要是通過打開app來實現打開網址的功能。盡管實現起來比較簡單,但從效果上來說還是有缺陷。
本文將借助於Broadcast廣播機制來實現桌面圖標鏈接網址的功能。不僅效果好,並且最大的長處就是不用再借助於app應用來打開站點了。
實現過程例如以下:
1、在AndroidManifest.xml配置文件裏加入權限:
<uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /> <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
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);
沒錯,此種實現方式既正宗,又完美。要的就是這個口味。
android--手機桌面添加網址鏈接圖標(解決方式二)