安卓手机角标显示方案

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

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

安卓手机角标显示方案_第1张图片
支持机型列表

具体使用方法参考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;

安卓手机角标显示方案_第2张图片
推送测试

备注:不同的通知notifyId不同

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

安卓手机角标显示方案_第3张图片
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);

具体参考小米官网文档:https://dev.mi.com/doc/p=3904/

你可能感兴趣的:(安卓手机角标显示方案)