高さRelative layout
が固定され356 px
、幅がラップコンテンツです。背景を画像として
配置しました。
画像の寸法はです。Imageview
496 px * 496 px
画像は正方形の画像ですが、長方形としてスケーリングされます。
これがXML
-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlMain"
android:layout_width="wrap_content"
android:layout_height="356px" >
<ImageView
android:id="@+id/ivIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/outdoor_verygood_ring" />
</RelativeLayout>
元の画像は次のとおりです-
相対レイアウトでの外観は次のとおりです-
私が欲しいのは、画像が拡大縮小されている場合get scaled in both X and Y
です。
どうすればこれを達成できますか?