标签:
一、关于布局
二、4种布局方式总览
三、LinearLayout需要注意的地方
1、关于布局方向,因为是线性的,所以有方向,在布局页面中通过android:orientation属性进行设定
2、关于容易混淆的两个属性:
3、关于自适配与android:layout_weight属性
四、RelativeLayout虽然使用的属性很多,但是总结起来有三类
五、FrameLayout布局很奇怪,它没有任何定位方式,所有的控件都会放在布局的左上角,那个这种布局方式的应用场景是什么呢?
六、TableLayout需要注意的地方
TableLayout的示例代码
<TableLayout xmlns:android="http://schema.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchColumns="1" > <TableRow> <TextView android:layout_height="wrap_content" android:text="Account:" /> <EditText android:layout_height="wrap_content" android:hint="Input your account" /> </TableRow> <TableRow> <TextView android:layout_height="wrap_content" android:text="Password:" /> <EditText android:layout_height="wrap_content" android:inputType="textPassword" /> </TableRow> <TableRow> <Button android:id="@+id/login" android:layout_height="wrap_content" android:layout_span="2" android:text="Login" /> </TableRow> </TableLayout>
《Android第一行代码》学习记录007 - 4种基本布局
标签:
原文地址:http://www.cnblogs.com/matclone/p/4895598.html