0

我想做一些类似 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..

4

2 回答 2

1

在 RelativeLayout 中,您的 UI 组件位置相对于其他 UI 组件和父容器。您不能在 RelativeLayout 中使用 android:layout_column。只要在 java 活动类中添加对它的引用,就可以为任何列定义任何活动。

于 2013-10-02T05:32:51.207 回答
0

我不确定你在找什么。你可能想做不同的事情。

首先,这是您的布局在横向布局中的样子: 当前布局/景观

那么问题来了,它有什么问题呢?你希望它看起来如何?我可以假设一些事情,但它需要更多的指导。

  • 在纵向方向上,没有足够的空间来显示如此复杂的屏幕。您可以在清单中设置,无论用户做什么,此 Activity 都应仅以横向模式显示并且不应更改方向。在清单中设置它的方法:<activity android:name="+yourActivityClass+" android:screenOrientation="landscape"></activity>
  • 也许您想将三个区域分成三个不同的屏幕,并可以在它们之间切换,例如从左到右再向后擦拭。在这种情况下,您最好使用 Fragments。在 Eclipse 中,当您创建一个新 Activity 时,它会询问您所需的导航类型并创建一个骨架。
于 2013-10-02T05:58:38.887 回答