布局adjustViewBounds不起作用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了布局adjustViewBounds不起作用相关的知识,希望对你有一定的参考价值。

我希望ImageView保持其宽高比与layout_height = match_parent,但我不知道为什么会发生这种情况?

bob

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <ImageView
           android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:background="@drawable/bob" />
        <TextView
            android:gravity="center"
          android:textAppearance="@style/TextAppearance.AppCompat.Headline"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Bob" />
    </LinearLayout>
</LinearLayout>
答案
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <ImageView
           android:layout_width="wrap_content"
            android:layout_height="match_parent"

            android:background="@drawable/bob" />
        <TextView
            android:gravity="center"
          android:textAppearance="@style/TextAppearance.AppCompat.Headline"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Bob" />
    </LinearLayout>
</LinearLayout>
另一答案

用于设置全图像视图scaletype = fitxy

以上是关于布局adjustViewBounds不起作用的主要内容,如果未能解决你的问题,请参考以下文章

布局在 Visual Studio 2015 中不起作用?

UITableViewController 布局不起作用

Android解决在RelativeLayout中使用ImageView, adjustViewBounds 无效

Android解决在RelativeLayout中使用ImageView, adjustViewBounds 无效

布局约束不起作用

布局 .xml 有时在某些 android 版本上不起作用