android-通知高度不正确的“ match_parent”
作者:互联网
我尝试使用此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”不使用通知的全部高度?
我希望红色区域的高度与通知的高度相同,而不使用“ dip”统一.我使用的是Android 4.2.2.谢谢 !
解决方法:
您是否尝试过使用RelativeLayout?并在ImageView标签中使用这些属性
android:scaleType="centerCrop"
android:adjustViewBounds="true"
标签:notifications,height,android 来源: https://codeday.me/bug/20191123/2065588.html