我使用2個內部Linearlayouts將我的屏幕分爲2個部分。它看起來像這樣:2視圖並排與高度相同
第一內佈局有一個TextView和一個按鈕。第二個有一個ImageView和一個Button。現在我想爲TextView和ImageView獲取相同的高度,而無需爲layout_height設置固定值。左邊的按鈕也應該與右邊的按鈕一致。
這裏是我的xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context="de.dk.masterfi.ActMain">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="280dp"
android:background="@drawable/border"
android:padding="10dp"
android:text="@string/welcome"/>
<Button android:id="@+id/button2" android:layout_width="match_parent"
android:layout_height="wrap_content" android:text="Favoriten"/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="280dp" android:src="@drawable/training"/>
<Button android:layout_width="match_parent" android:layout_height="wrap_content"
android:text="Hauptmenü"/>
</LinearLayout>
哇,怎麼謝謝!很好的解決方案。 –