Макет AdjustViewBounds не работает - PullRequest
0 голосов
/ 07 сентября 2018

Я хочу, чтобы 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>

Ответы [ 2 ]

0 голосов
/ 07 сентября 2018
<?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>
0 голосов
/ 07 сентября 2018

Используйте для этого, чтобы установить в полном представлении изображения scaletype = fitxy

...