我想要在圖像視圖中顯示圖像與height=200dp
和width=match_parent
。通過使用高度200dp和寬度作爲match_parent,圖像寬度是相同的,因爲它是採取。所以我已經嘗試android:scaleType =「fitXY」,但圖像拉伸,這是不required.How我可以在ImageView中顯示圖像,因爲我想?顯示圖像與寬度作爲匹配的父母和身高爲200dp沒有伸展在android
XML:
<ImageView
android:id="@+id/ProfilePicIV"
android:layout_marginTop="20dp"
android:layout_height="170dp"
android:layout_width="match_parent"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:layout_below="@+id/cropView"
/>
這是我的XML code.But我無法顯示圖像,因爲我want.I所有規模types.android:scaleType="fitXY試圖」將顯示爲我想要的但隨着形象的延伸。
使用scaleType _FitCenter_。還有_android:adjustViewBounds =「true」_ – Piyush
@Piyush Gupta我試過這個,但寬度並沒有改變,即使我已經給出了匹配父項。 – Amshu
任何人都可以解決這個問題嗎? – Amshu