質問

I want to define maxHeight for an image that it's adjustViewBounds has been set to true. in this way adt automatically keeps aspect ratio. is there any way to gain this approach without keeping aspect ratio?

this is the image, and i want to stretch it from sides, without being displaced:

this is the image, and i want to stretch it from sides, without being displaced

役に立ちましたか?

解決

You can do like this

 <ImageView
    android:layout_width="100dp"
    android:layout_height="400dp"
    android:src="@drawable/ic_launcher" 
    android:scaleType="fitXY"/>

他のヒント

try this

<ImageView 
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/your image name"
        android:scaleType="fitXY"/>

I think android:scaleType="fitXY" is what you are looking for.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top