1
我試圖找到關於在layout_width/layout_height的wrap_content的ViewHolder中將layout_width/layout_height設置爲match_parent的UI組件的行爲的文檔或準則。wrap_content佈局內的match_parent
因此,例如,以下佈局的預期結果是什麼?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
/>
</RelativeLayout>