我正在使用远程视图进行自定义通知布局。一切正常。我遇到的唯一问题是通知在通知状态栏中显示为白色圆圈。我希望我的应用程序图标显示在通知状态栏中(如何在kitkat和更低版本中显示)。有没有办法改变这个?
private void showNotification() {
Intent intent = new Intent(this, HomeActivity.class);
intent.putExtra(LIVE_RADIO_PUSH, true);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, intent, 0);
mBuilder = new NotificationCompat.Builder(this);
mBuilder.setCategory(Notification.CATEGORY_SERVICE);
mBuilder.setContentTitle(mTitle);
mBuilder.setContentText("Live Radio");
mBuilder.setSmallIcon(R.drawable.logo);
mBuilder.setWhen(System.currentTimeMillis());
mBuilder.setVisibility(Notification.VISIBILITY_PUBLIC);
mBuilder.setContentIntent(pendingIntent);
mBuilder.setColor(getResources().getColor(R.color.theme_primary));
mNotificationView = new RemoteViews(getPackageName(), R.layout.notification_layout);
mNotificationView.setTextViewText(R.id.content_title, mTitle);
mNotificationView.setTextViewText(R.id.content_text, "Live Radio");
SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm");
String time = dateFormat.format(new Date(System.currentTimeMillis()));
mNotificationView.setTextViewText(R.id.current_time, time);
mNotificationView.setImageViewResource(R.id.play_pause, R.drawable.pause_radio);
mNotificationView.setImageViewResource(R.id.close_btn, R.drawable.notifictn_close_btn);
setListeners(mNotificationView);
mBuilder.setContent(mNotificationView);
Log.d(TAG, "App is freezed2");
if (null != mNotificationMngr)
mNotificationMngr.notify(RADIO_NOTIFICATION_ID, mBuilder.build());
}
答案 0 :(得分:2)
我也遇到过这个问题,如你所说,如果您的ANDROID_BUILD_TARGET_SDK_VERSION = 21,它会将此通知更改为白色。
通知图标设计指南作为此链接。 http://developer.android.com/design/style/iconography.html
答案 1 :(得分:0)
最近我们做了一个带通知的应用程序。它在棒棒糖中工作正常。一旦检查下面的代码可能会对你有帮助。
mNotification = new Notification.Builder(this).setContentTitle("M3 Media Player").setContentIntent(mPendingIntentHome)
.setSmallIcon(R.drawable.app_icon).setPriority(Notification.PRIORITY_MAX).setContent(mNotificationContentView)
.setStyle(new Notification.BigPictureStyle()).build();
答案 2 :(得分:0)
如果您的compileSDKversion大于20,则通知图标应为白色透明背景图像。否则,图像将呈现为白色图像。
请仔细阅读以下链接,了解创建图标的指南
https://www.google.com/design/spec/patterns/notifications.html
以及通知图标生成器。