2

我正在尝试在 Android API 23 上显示一个大/扩展的自定义通知,但操作按钮不显示。

您可以在下面找到我的代码。我也尝试添加操作,但没有成功。

我还尝试了其他问题的其他答案,但没有奏效。

这是我的代码:

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>
4

1 回答 1

0

Android 中的通知高度限制为256dp。如果您的 RemoteViews 布局超出此范围,则视图将被剪裁在底部。如果您将 Button 放在布局的顶部,您会看到它出现了。

于 2016-04-27T13:19:42.020 回答