當前位置:首頁 » 安卓系統 » android仿qq源碼

android仿qq源碼

發布時間: 2025-02-27 09:01:32

Ⅰ android仿QQ右上角顯示未讀消息個數,求助!!!

顯示消息的imageview先隱藏,根據數據動態改變

Ⅱ android仿QQ右上角顯示未讀消息個數,求助

監聽消息,得到數目,在app圖標上畫出數字(canvas),然後替換桌面快捷方式

public void createShortCut(){

//創建快捷方式的Intent
Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
//不允許重復創建
shortcutintent.putExtra("plicate", false);
//需要現實的名稱
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
//快捷圖片(每次重繪logo生成一張新圖)
Parcelable icon = Intent.ShortcutIconResource.fromContext(activity, R.drawable.logo);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
//點擊快捷圖片,運行的程序主入口
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent());
//發送廣播。OK
sendBroadcast(shortcutintent);
}
}

熱點內容
win10配置java 發布:2025-05-02 07:05:40 瀏覽:723
如何ftp伺服器傳文件 發布:2025-05-02 06:59:28 瀏覽:826
安卓照片怎麼搞放大鏡 發布:2025-05-02 06:54:31 瀏覽:348
老王壓縮包 發布:2025-05-02 06:42:18 瀏覽:192
sql資料庫怎麼打開文件 發布:2025-05-02 06:41:36 瀏覽:875
阿里雲伺服器和華為雲哪個好 發布:2025-05-02 06:40:59 瀏覽:337
協作源碼 發布:2025-05-02 06:36:00 瀏覽:209
安裝python2 發布:2025-05-02 06:30:53 瀏覽:750
谷歌安卓輸入法如何輸入中文 發布:2025-05-02 06:30:44 瀏覽:959
centospython卸載 發布:2025-05-02 06:29:13 瀏覽:519