推送通知图标

时间:2015-05-17 01:08:33

标签: android parse-platform notifications icons push

我尝试更改默认通知图标并获得以下结果:

enter image description here

如何删除图像右上角的白色圆圈?

public class ParseReceiver extends ParsePushBroadcastReceiver {

@Override
protected Bitmap getLargeIcon(Context context, Intent intent) {
    Bitmap icon = BitmapFactory.decodeResource(context.getResources(), R.drawable.ic_launcher);
    return icon;
   }
}

另一个问题:

enter image description here

如何通过彩色?

更改通知栏中的白色图像圈

1 个答案:

答案 0 :(得分:1)

右下方的圆圈和统计栏中的圆圈均由“小图标”控制,而不是大图标。

您可以通过覆盖ParseReceiver中的getSmallIcon来设置它,或者更简单的方法是添加

<meta-data android:name="com.parse.push.notification_icon" android:resource="@drawable/push_icon"/>

到您的AndroidManifest.xml文件。