我想做一些类似 3 个大列的操作来分隔 3 个活动。但我不确定如何拆分第二列,我想在其中放置地图。任何帮助表示赞赏!谢谢!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!----- 1 main table to split into 3 columns ------>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<!----- 1 row ------>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<!-----@@@@@@@@@@@@@@@@@@@@@@@@- Column 1 @@@@@@@@@@@@@@@@@@@@@@@@------>
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/connect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:text="Connect" />
<Button
android:id="@+id/disconnect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:text="Disconnect" />
</LinearLayout>
<LinearLayout
android:layout_width="207dp"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/status_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFF00"
android:gravity="center"
android:orientation="horizontal" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/s1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:text="S1" />
<Button
android:id="@+id/s2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:text="S2" />
<ImageButton
android:id="@+id/configure"
android:layout_width="81dp"
android:layout_height="wrap_content"
android:onClick="openConfigurations"
android:src="@android:drawable/ic_menu_manage" />
</LinearLayout>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Gallery
android:id="@+id/gallery2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageButton
android:id="@+id/up"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="2"
android:src="@drawable/up" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:src="@drawable/left" />
<ToggleButton
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="2"
android:layout_gravity="center"
android:background="@drawable/check"
android:textOff=""
android:textOn="" />
<ImageButton
android:id="@+id/right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="3"
android:src="@drawable/right" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/down"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="2"
android:src="@drawable/down" />
</TableRow>
</TableLayout>
</TableLayout>
<!-----@@@@@@@@@@@@@@@@- Column 2 @@@@@@@@@@@@@@@@@------>
<RelativeLayout
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="500dp"
android:layout_marginTop="27dp"
android:layout_column="0"
android:layout_gravity="center"
android:layout_row="9"
android:background="#FFFFAA" >
<com.example.project.image_map
android:id="@+id/mapView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center" />
</RelativeLayout>
<!-----@@@@@@@@@@@@@@@@- Column 3 @@@@@@@@@@@@@@@@@------>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_column="3"/>
</TableRow>
</TableLayout>
</LinearLayout>
我不确定,因为我试图将“android:layout_column =“2”放在相对布局中并且出现错误。我应该如何定义哪个活动在哪个列中?它不像图像或按钮在哪里我只是简单地添加了 layout_column..