如何分割屏幕,使屏幕的左半部分为Linearlayout,右半部分为Tablelayout。
我尝试将layout_weight为1并将weightSum为2应用于RelativeLayout包装器。
任何人都可以指导我吗?
这是我到目前为止所得到的:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="2"
>
<LinearLayout android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="@string/hello2" />
</LinearLayout>
<TableLayout
android:id="@+id/Row1"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:layout_alignParentRight="true"
>
<TableRow>
<Button android:id="@+id/Modus"
android:text="@string/Mode1"
android:background="@layout/modus_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
/>
<Button android:id="@+id/Modus"
android:text="@string/Mode2"
android:background="@layout/modus_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
/>
</TableRow>
</TableLayout>
</RelativeLayout>
答案 0 :(得分:1)
为您的LinearLayout提供ID并将android:layout_toRightOf="@+id/your_linear_layout"
参数添加到TableLayout。或者您可以使用另一个LinearLayout而不是RelativeLayout。如果您不需要添加更多视图,LinearLayout可能会更好。