当前位置:首页 » 安卓系统 » 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);
}
}

热点内容
服务器地址校验 发布:2025-05-02 03:03:28 浏览:883
入户380v配电箱如何配置图 发布:2025-05-02 02:58:27 浏览:270
电脑挂国外服务器怎么操作 发布:2025-05-02 02:39:26 浏览:410
python重采样 发布:2025-05-02 02:38:51 浏览:849
海信新版电视的设置密码是什么 发布:2025-05-02 02:30:22 浏览:221
手机电脑服务器教程 发布:2025-05-02 02:29:09 浏览:311
ntko大文件上传 发布:2025-05-02 02:25:59 浏览:117
视觉算法简称 发布:2025-05-02 02:24:21 浏览:210
马蹄数据库 发布:2025-05-02 02:07:51 浏览:746
codol怎么配置 发布:2025-05-02 01:38:23 浏览:344