我正在尝试在Android API 23上显示大/扩展的自定义通知,但操作按钮不会显示。
Bellow你可以找到我的代码。 我也试过添加动作,但我没有成功。
我也尝试过其他问题的其他答案,但它们没有用。
这是我的代码:
Notification.Builder mBuilder =
new Notification.Builder(this)
.setSmallIcon(R.drawable.mailunread)
.setContentTitle("My notification")
.setContentText("Hello World!").setWhen(0);
Notification notification = mBuilder.build();
RemoteViews contentView=new RemoteViews(this.getPackageName(), R.layout.cell_notification);
notification.bigContentView = contentView;
NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, notification);
以下是我的观点:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="New offer for search" android:textColor="@android:color/black" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content" android:text="vendor" android:textColor="@android:color/black" />
<ImageView
android:layout_width="100dp" android:layout_gravity="center"
android:layout_height="wrap_content" android:src="@drawable/iphone1"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content" android:text="elevator pitch" android:textColor="@android:color/black" />
<Button
android:id="@+id/buttonNotification"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Respond Now"
android:textColor="@android:color/black"
android:layout_weight="20"/>
</LinearLayout>
答案 0 :(得分:0)
Android中的通知高度仅限于 256dp 。如果您的RemoteViews布局超出该范围,则会在底部剪切视图。如果您将Button放在布局的顶部,您将看到它显示出来。