A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

<?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:orientation="vertical" >
        <!-- 相对布局 -->
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
        <!-- 表格布局 -->
   <TableLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
                        <!-- 网格布局 -->
            <GridLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent" >
                                <!-- 帧布局 -->
                <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:text="helloWorld" />
                </FrameLayout>
            </GridLayout>
        </TableLayout>
    </RelativeLayout>
</LinearLayout>

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马