我有一個Linearlayout背景的問題。問題是我將LinearLayout背景設置爲圖像。可以說圖像大小是300像素的高度。這個LinearLayout包含其他視圖可以說行。一行是100像素的高度。問題是,當我爲此LinearLayout添加一行時,行只填充了300像素的100像素。問題在於是否可以根據子視圖發生的次數來拉伸或縮放LinearLayout?Linearlayout背景圖像
的LinearLayout的代碼:
<LinearLayout
android:id="@+id/companies_list_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:background="@drawable/firm_list_background"
android:orientation="vertical" />
圖像猜想延伸到自動填充佈局設置這個高度爲您的LinearLayout的高度。我不明白你的意思 - 你的圖像是300像素,你想拉伸它來填充100像素? (你的意思是縮水?)。你想獲得什麼的例子可能會有所幫助 – auval