为了账号安全,请及时绑定邮箱和手机立即绑定

更改通知布局

更改通知布局

慕运维8079593 2019-07-30 14:37:14
更改通知布局我反编译我的系统音乐应用程序(来自索尼爱立信Android版2.3.7),因为我想更改通知布局。我找到了使用此代码创建通知的方法:private void sendStatusBarNotification(Track paramTrack){     if (paramTrack != null)     {         NotificationManager localNotificationManager = (NotificationManager)this.mContext.getSystemService("notification");         String str = paramTrack.getArtist();         if ((str == null) || (str.equals(this.mContext.getString(2131361954))))             str = this.mContext.getString(2131361798);         Notification localNotification = new Notification(2130837696, paramTrack.getTitle() + " - " + str, System.currentTimeMillis());         localNotification.flags = (0x2 | localNotification.flags);         localNotification.flags = (0x20 | localNotification.flags);         PendingIntent localPendingIntent = PendingIntent.getActivity(this.mContext, 0, new Intent(this.mContext, MusicActivity.class), 268435456);         localNotification.setLatestEventInfo(this.mContext, paramTrack.getTitle(), str, localPendingIntent);         localNotificationManager.notify(0, localNotification);     }}我现在的问题是:如何更改通知布局?我想构建一个看起来像原始Android通知布局但在通知右侧有一个额外图像的布局。我怎样才能做到这一点?
查看完整描述

3 回答

?
四季花海

TA贡献1811条经验 获得超5个赞

要创建自定义通知布局,请查看有关此主题的Android API指南。看起来你打算使用这RemoteViews门课。


查看完整回答
反对 回复 2019-07-30
  • 3 回答
  • 0 关注
  • 333 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信