如何在Android中创建此布局

时间:2012-10-24 09:15:50

标签: android android-layout xamarin.android

我正在玩Mono Droid并试图实现以下布局

enter image description here

我会使用什么类型的布局? Android中是否有类似锚点和对接的东西,比如WinForms,这样可以有点独立?

这仅适用于平板电脑,更适合我的实验。左侧面板内的按钮将重复。

感谢。

2 个答案:

答案 0 :(得分:1)

根布局将如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:baselineAligned="false"
    android:orientation="horizontal"
    android:padding="5dp" >

    <RelativeLayout
        android:id="@+id/leftContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="0.8" >
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rightContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:padding="20dp" >

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:text="btn1" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="btn2" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:text="btn3" />
        </RelativeLayout>
    </RelativeLayout>

</LinearLayout>

在右上和左下布局的顶部添加作为ListView的动态项目。

答案 1 :(得分:0)

线性布局将正常工作..您可以为指定要捕获的空间赋予权重..