ANDROID UI布局学习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ANDROID UI布局学习相关的知识,希望对你有一定的参考价值。

一、LINEARLAYOUT 线性布局
android:layout_width=""match_parent 适应父控件 fill_parent 填充父控件 wrap_content 内容包裹
android:orientation="" 方向选择 vertical 竖向 horizontal 横向
android:laytou_weight="" 权重

二、FRAMELAYOU 框架布局

三、RELATIVELAYOUT 相对布局
android:layout_toRightOf="@id/button" 位于BUTTON右边
android:layout_toLeftOf="@id/button" 位于BUTTON左边
android:layout_below="@id/button" 位于BUTTON下边
android:layout_above="@id/button" 位于BUTTON上边
四 TABLELAYOUT 表格布局

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="0,1,2,3" >

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="button1" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="button1" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="button1" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="button1" />
        </TableRow>
    </TableLayout>

 

以上是关于ANDROID UI布局学习的主要内容,如果未能解决你的问题,请参考以下文章

Android非UI片段使用[重复]

如何在地图片段 API v2 布局顶部添加按钮

以编程方式将片段添加到android中的框架布局

android UI:底部菜单栏的学习与制作——Fragment碎片一

Android开发学习之路--UI之自定义布局和控件

ANDROID UI布局学习