このxmlコードでカスタムビューを作成しようとしています:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FF0000">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/ic_launcher"/>
</LinearLayout>
そして、私はこのコードで通知を実行します:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.notification_layout);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setContent(remoteViews).setSmallIcon(R.drawable.ic_launcher);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(20, mBuilder.build());
}
結果は次のとおりです。
「match_parent」が通知の高さ全体を使用しないのはなぜですか?
「ディップ」ユニティを使用せずに、レッドゾーンが通知と同じ高さになるようにします。私はアンドロイド4.2.2を使用しています。ありがとうございました !