我是靠谱客的博主 合适歌曲,最近开发中收集的这篇文章主要介绍android系统允许icon角标,安卓手机角标显示方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一些应用,尤其是IM应用,在很多场景系统会推送未读消息;这个时候除了通知栏的提醒,还可以在应用图标右上角加入角标的提示。

目前大部分的安卓系统并不支持设置应用角标,仅部分定制的系统支持。为了节省开发成本,可使用github的开源库https://github.com/leolin310148/ShortcutBadger 。ShortcutBadger支持的手机类型如下:

eab4f5f572bc

支持机型列表

具体使用方法参考github文档,主要的语句如下:

1. Add mavenCentral to your build script.

repositories {

mavenCentral()

}

2. Add dependencies for ShortcutBadger, it's available from maven now.

dependencies {

compile "me.leolin:ShortcutBadger:1.1.16@aar"

}

3. Add the codes below:

int badgeCount = 1;

ShortcutBadger.applyCount(context, badgeCount); //for 1.1.4+

ShortcutBadger.with(getApplicationContext()).count(badgeCount); //for 1.1.3

4. If you want to remove the badge

ShortcutBadger.removeCount(context); //for 1.1.4+

ShortcutBadger.with(getApplicationContext()).remove(); //for 1.1.3

or

ShortcutBadger.applyCount(context, 0); //for 1.1.4+

ShortcutBadger.with(getApplicationContext()).count(0); //for 1.1.3

MIUI系统的调用方法

ShortcutBadger库中,对于小米手机(MIUI6及以上)不能采用上述的方法设置角标,需要采用以下方案:

//注意,需要在调用NotificationManger.notify方法之前,调用更新角标的方法

ShortcutBadger.applyNotification(getApplicationContext(), notification, badgeCount);

MIUI系统角标原理

MIUI6以后重新设计了桌面app角标的显示,分为以下两种情况:

1)默认情况

当app 向通知栏发送了一条通知 (通知不带进度条并且用户可以删除的),那么桌面app icon角标就会显示1. 此时app显示的角标数是和通知栏里app发送的通知对应的,即向通知栏发送了多少通知就会显示多少角标。

eg:如下图,通知栏有两条通知消息,则app角标显示为2。如果将第一条通知滑动删除,则app角标显为2-1=1;

eab4f5f572bc

推送测试

备注:不同的通知notifyId不同

2)通知自定义角标

小米提供了一种方法供用户自定义角标数目。如上面的示例,通知栏里虽然只有两条通知,但第一条通知的角标(messageCount)可设为21,第二条通知的角标可设为3,这样app的角标则为21+3=24条。如果用户手动删除第一条通知,则app角标显示变为24-21=3条。

eab4f5f572bc

Notification.extraNotification内容

原理是通过反射拿到 Notification 的私有属性 extraNotification ,重点就是这个 extraNotification ,这个类里面有个私有属性 messageCount ,我们只要改变这个 messageCount 值就能改变app的角标。注意,这个值设置为该条通知对应的未读信息个数,对上图的第一条通知而言,该值就是21。

反射的具体代码如下:

NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);

Notification.Builder builder = new Notification.Builder(this).setContentTitle(“title”).setContentText(“text”).setSmallIcon(R.drawable.icon);

Notification notification = builder.build();

try {

Field field = notification.getClass().getDeclaredField(“extraNotification”);

Object extraNotification = field.get(notification);

Method method = extraNotification.getClass().getDeclaredMethod(“setMessageCount”, int.class);

method.invoke(extraNotification, mCount);

} catch (Exception e) {

e.printStackTrace();

}

mNotificationManager.notify(0,notification);

最后

以上就是合适歌曲为你收集整理的android系统允许icon角标,安卓手机角标显示方案的全部内容,希望文章能够帮你解决android系统允许icon角标,安卓手机角标显示方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部