使用图像按钮将通知设置为自定义xml文件时,这些图像无法正确显示。相反,我只看到一个灰色框(见下文)。
这是我的xml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageButton
android:id="@+id/play"
android:layout_width="100dp"
android:layout_height="100dp"
android:scaleType="fitCenter"
app:srcCompat="@android:drawable/ic_media_play" />
<ImageButton
android:id="@+id/next"
android:layout_width="100dp"
android:layout_height="100dp"
android:scaleType="fitCenter"
app:srcCompat="@android:drawable/ic_media_next" />
</LinearLayout>
这是我的通知生成器:
notificationBuilder = new NotificationCompat.Builder(activity, "TestNoficication")
.setContentTitle("Test")
.setContentText("test")
.setSmallIcon(R.mipmap.ic_launch_icon)
.setOngoing(true)
.setCustomContentView(new RemoteViews(activity.getPackageName(), R.layout.custom_notification))
.setPriority(NotificationCompat.PRIORITY_DEFAULT);
我在这里做错什么了吗?