Android学习笔记6——基本布局

【目录】

1.linearLayout

2.tableLayout

3.Layout 可以互相嵌套

4.RelativeLayout(灵活性好些,不少对齐参数)


 

 

1.linearLayout

linearlayout常用的TextView属性

 

<textarea cols="50" rows="15" name="code" class="java:collapse"> android:id="@+id/myTextView" android:padding="10dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_vertical" android:background="#00aa00" android:layout_weight="1"</textarea> 

 

 

 

                           图1 整体效果图

PS:

没时间写完整了,大家记得看那位高手的第9集,[Android开发视频教学].01_09_Activity布局初步(一)

电驴上面有得下,关键是比优酷的清晰多了

 

2.tableLayout

3.Layout 可以互相嵌套

 

Android学习笔记6——基本布局_第1张图片

                       图2  Table 嵌到 linear里

<textarea cols="50" rows="15" name="code" class="java:collapse"> &lt;TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TableRow&gt; &lt;TextView android:text="计算2" android:textSize="20pt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:background="#aa0000" /&gt; &lt;TextView android:text="计算3" android:textSize="20pt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:background="#0000aa" /&gt; &lt;/TableRow&gt; &lt;/TableLayout&gt;</textarea> 

                    Table里的要加入TableRow

你可能感兴趣的:(android,layout,table)