-1

I want the ImageView keep its aspect ratio with layout_height=match_parent but I don't know why this happen ?

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>
Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
user4254398
  • 373
  • 3
  • 12

2 Answers2

1
<?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>
varun setia
  • 148
  • 10
0

Use for this to set in full image view scaletype=fitxy

Chirag Nahar
  • 159
  • 8