我在縮放的相對佈局上設置圖像。但是,在設置圖像時,佈局對齊規則會被破壞。該圖像應該與左側對齊,但會發生移位。圖像越大,圖像放置的距離越遠。其他佈局項目(例如依賴圖像位置的文本)也會移動。縮放後的圖像看起來很好,除了它的位置。ImageView在設置圖像時不符合佈局規則
圖像是200px,酒吧的高度的實際大小是70dp。我可以調整圖像大小,但是我想知道爲什麼發生這種情況。
編輯 - 我自己也嘗試設置圖像動態image.setImageResource(R.drawable.placeholder);
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/footer"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/placeholder"
android:layout_alignParentLeft="true"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="test"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@id/icon"
android:layout_above="@id/username"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@id/username"
android:text="user name test"
android:layout_marginBottom="15dp"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@id/icon"
android:layout_alignParentBottom="true"/>
<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/play_media_btn_toggle"
android:layout_marginTop="15dp"
android:id="@id/play"
android:layout_alignParentRight="true"
android:textOn=""
android:textOff=""/>
</RelativeLayout>
你能分享一下這個問題的截圖嗎? –
你在imageview上設置了「adjustViewBounds」嗎?這可能是問題所在。 –
@ Sandervan'tVeer修復它謝謝!如果您回覆,我會將其設置爲正確的答案。我看到了這個文檔,但並沒有真正理解屬性的作用。 – serenskye