【发布时间】:2015-05-17 01:08:32
【问题描述】:
我正在尝试更改默认通知图标并得到以下结果:
如何去掉图片右上角的白圈?
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;
}
}
另一个问题:
如何将通知栏中的白色图像圈更改为彩色?
【问题讨论】:
-
显示您的启动器图标
-
我的图标是第一张带有日本国旗的图标。我也希望它在状态栏中着色。
标签: android parse-platform notifications icons push