我正在开发一个音乐播放器应用程序。玩家正在接受服务。当歌曲开始播放时,我想用remoteViews显示自定义通知。
我为布局设计的是:
但遗憾的是,构建通知时文本视图已消失:
布局的代码如下:
notification_player.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="140dp"
android:layout_height="140dp"
android:id="@+id/album_art" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/wrapper"
android:layout_toRightOf="@+id/album_art"
android:layout_alignBottom="@+id/album_art">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:id="@+id/player"
android:layout_marginBottom="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/prev"
android:layout_marginRight="5dp"
android:src="@drawable/ic_fast_rewind"
android:layout_gravity="center_vertical" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#82c7c7c7"></LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/play"
android:layout_marginRight="5dp"
android:layout_marginLeft="5dp"
android:layout_gravity="center_vertical"
android:background="@drawable/ic_play_arrow" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#82c7c7c7" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/next"
android:layout_marginLeft="5dp"
android:layout_gravity="center_vertical"
android:background="@drawable/ic_fast_forward" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:id="@+id/divider_horizontal"
android:layout_above="@+id/player"
android:background="#82c7c7c7"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"></LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/divider_horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/title"
android:layout_marginLeft="10dp"
android:layout_marginTop="25dp"
android:text="Title"
style="@style/NotificationTitle"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="singer"
android:id="@+id/singer"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
style="@style/NotificationText"/>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/close"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/ic_close" />
</RelativeLayout>
</RelativeLayout>
显示通知的服务代码:
NotificationCompat.Builder builder;
RemoteViews rv = new RemoteViews(getPackageName(),R.layout.notification_player);
rv.setImageViewBitmap(R.id.album_art,aq.getCachedImage(item.getImage()));
rv.setTextViewText(R.id.title, item.getTitle());
rv.setTextViewText(R.id.singer, item.getSinger());
rv.setOnClickPendingIntent(R.id.close, delete);
builder = new NotificationCompat.Builder(getApplicationContext())
.setContent(rv)
.setSmallIcon(ir.farzamhabibi.moozik.R.drawable.ic_launcher);
startForeground(10, builder.build());
知道问题是什么吗?
编辑:
我尝试设置LinearLayout高度以包装内容并删除边距
我甚至尝试在所有布局中添加textView,即使在所有布局中也是如此,但似乎通知正在删除所有文本视图。
答案 0 :(得分:2)
我发现了什么问题。 在我的情况下,我试图显示一个大于默认通知布局的布局,结果是压缩我的布局以适应默认通知的大小。
我改变了这样的观点:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:id="@+id/album_art" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/wrapper"
android:descendantFocusability="blocksDescendants"
android:layout_toRightOf="@+id/album_art">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="false"
android:gravity="center_vertical"
android:orientation="vertical"
android:id="@+id/info"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="title"
android:textStyle="bold"
/>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="singer"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:layout_alignParentBottom="false"
android:layout_centerHorizontal="true"
android:id="@+id/player"
android:layout_below="@+id/divider_horizontal"
android:layout_marginTop="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/prev"
android:layout_marginRight="20dp"
android:src="@drawable/ic_fast_rewind"
android:layout_gravity="center_vertical" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#82c7c7c7"></LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/play"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_gravity="center_vertical"
android:src="@drawable/ic_pause" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#82c7c7c7" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/next"
android:layout_marginLeft="20dp"
android:layout_gravity="center_vertical"
android:src="@drawable/ic_fast_forward" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:id="@+id/divider_horizontal"
android:background="#82c7c7c7"
android:layout_below="@+id/info"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"></LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/close"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/ic_close" />
</RelativeLayout>
</RelativeLayout>
在通知方法中,我添加了以下几行来解决问题:
RemoteViews rv = new RemoteViews(getPackageName(), R.layout.notification_player);
builder = new NotificationCompat.Builder(getApplicationContext())
.setContent(rv)
.setTicker("IranGrammy playing")
.setAutoCancel(true)
.setSmallIcon(ir.farzamhabibi.moozik.R.drawable.ic_launcher);
rv.setImageViewBitmap(R.id.album_art, aq.getCachedImage(item.getImage()));
rv.setTextViewText(R.id.title, item.getTitle());
rv.setTextViewText(R.id.text, item.getSinger());
rv.setOnClickPendingIntent(R.id.close, delete);
rv.setOnClickPendingIntent(R.id.play, playPI);
rv.setOnClickPendingIntent(R.id.next, nextPI);
rv.setOnClickPendingIntent(R.id.prev, prevPI);
Notification notif = builder.build();
notif.bigContentView = rv;
startForeground(10, notif);