android---复杂布局的学习

主要是布局管理器之间的配合,在以后的软件设计中会学习到更多,本次涉及一些常用的参数
android:layout_above="@id/xxx"  --将控件置于给定ID控件之上
android:layout_below="@id/xxx"  --将控件置于给定ID控件之下

android:layout_toLeftOf="@id/xxx"  --将控件的右边缘和给定ID控件的左边缘对齐
android:layout_toRightOf="@id/xxx"  --将控件的左边缘和给定ID控件的右边缘对齐

android:layout_alignLeft="@id/xxx"  --将控件的左边缘和给定ID控件的左边缘对齐
android:layout_alignTop="@id/xxx"  --将控件的上边缘和给定ID控件的上边缘对齐
android:layout_alignRight="@id/xxx"  --将控件的右边缘和给定ID控件的右边缘对齐
android:layout_alignBottom="@id/xxx"  --将控件的底边缘和给定ID控件的底边缘对齐
android:layout_alignParentLeft="true"  --将控件的左边缘和父控件的左边缘对齐
android:layout_alignParentTop="true"  --将控件的上边缘和父控件的上边缘对齐
android:layout_alignParentRight="true"  --将控件的右边缘和父控件的右边缘对齐
android:layout_alignParentBottom="true" --将控件的底边缘和父控件的底边缘对齐
android:layout_centerInParent="true"  --将控件置于父控件的中心位置
android:layout_centerHorizontal="true"  --将控件置于水平方向的中心位置
android:layout_centerVertical="true"  --将控件置于垂直方向的中心位置

布局样式
这里写图片描述

对应代码

<RelativeLayout 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"
    >
    <!-- 顶部 -->
    <RelativeLayout android:layout_width="match_parent"
        android:id="@+id/native1"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:background="#ff0000"
        android:gravity="center"
        >
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="上方的按钮"
            android:textColor="#FFff00"
            />
    </RelativeLayout>
    <LinearLayout android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/native2"
        android:layout_below="@+id/native1"
        android:orientation="horizontal">
        <TextView android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="#FFFF00"
            android:background="#AAAA00"
            android:gravity="center"
            android:text="中部菜单"
            />
            <TextView android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="2"
            android:background="#BBBB00"
            android:textColor="#FFFF00"
            android:gravity="center"
            android:text="中部菜单2"
            />
    </LinearLayout>
    <!-- 底部 -->
        <RelativeLayout android:layout_width="match_parent"
        android:id="@+id/native2"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:background="#ffF000"
        android:gravity="center"
        >
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="底部的按钮"
            android:textColor="#FF0000"
            />
    </RelativeLayout>
</RelativeLayout>

版权声明:本文为博主原创文章,未经博主允许不得转载。

posted on 2015-08-18 20:10  牛李  阅读(299)  评论(0编辑  收藏  举报

导航