當前位置:首頁 » 安卓系統 » 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);
}
}

熱點內容
ftp伺服器搭建2003 發布:2025-02-27 12:57:56 瀏覽:831
c資料庫連接超時 發布:2025-02-27 12:47:31 瀏覽:330
sqlserver無法打開 發布:2025-02-27 12:46:04 瀏覽:580
演算法效能 發布:2025-02-27 12:36:53 瀏覽:324
壓縮彈簧失穩 發布:2025-02-27 12:21:13 瀏覽:665
搜索應用加密 發布:2025-02-27 12:11:02 瀏覽:770
pythondict線程安全 發布:2025-02-27 12:10:59 瀏覽:857
易語言編譯窗口設置 發布:2025-02-27 12:06:32 瀏覽:591
哥的密碼多少 發布:2025-02-27 12:06:32 瀏覽:450
存儲網關性能 發布:2025-02-27 11:58:39 瀏覽:368