android四列均匀布局,Android学习教程(四)之-----布局篇andriod 布局篇学习
LinearLayout:⼴受热爱的“⾏布局”,可以理解成
写⽂档,布置满⼀⾏控件后切换到下⼀⾏。
TableLayout:“表格布局”,可以理解成做表格,定义每⾏每列的控件。
AbsoluteLayout:“绝对布局”,VC、DELPHI等做界⾯就是绝对布局。
RelativeLayout:“相对布局”,控件相对容器的相对位置,如左右对齐等。
FrameLayout:“层叠式布局”以左上⾓为起点,将FrameLayout内的元素⼀层覆盖⼀层地显⽰。
FrameLayout:
FrameLayout是最简单的⼀个布局对象。它被定制为你屏幕上的⼀个空⽩备⽤区域,之后你可以在其中填充⼀个单⼀对象 — ⽐如,⼀张你要发布的图⽚。所有的⼦元素将会固定在屏幕的左上⾓;你不能为FrameLayout中的⼀个⼦元素指定⼀个位置。后⼀个⼦元素将会直接在前⼀个⼦元素之上进⾏覆盖填充,把它们部份或全部挡住(除⾮后⼀个⼦元素是透明的)。
我们看⼀下效果图:
其中l 代码如下:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:text="button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
android:text="textview"
android:textColor="#0000ff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
LinearLayout:
LinearLayout以你为它设置的垂直或⽔平的属性值,来排列所有的⼦元素。所有的⼦元素都被堆放在其它元素之后,因此⼀个垂直列表的每⼀⾏只会有⼀个元素,⽽不管他们有多宽,⽽⼀个⽔平列表将会只有⼀个⾏⾼(⾼度为最⾼⼦元素的⾼度加上边框⾼度)。LinearLayout保持⼦元素之间的间隔以及互相对齐(相对⼀个元素的右对齐、中间对齐或者左对齐)。
LinearLayout还⽀持为单独的⼦元素指定weight 。好处就是允许⼦元素可以填充屏幕上的剩余空间。这也避免了在⼀个⼤屏幕中,⼀串⼩对象挤成⼀堆的情况,⽽是允许他们放⼤填充空⽩。⼦元素指定⼀个weight 值,剩余的空间就会按这些⼦元素指定的weight ⽐例分配给这些⼦元素。默认的weight 值为0。例如,如果有三个⽂本框,其中两个指定了weight 值为1,那么,这两个⽂本框将等⽐例地放⼤,并填满剩余的空间,⽽第三个⽂本框不会放⼤。
我们看⼀下效果图:
android:layout_height="fill_parent">
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2">
android:text="Welcome to Mr Wei's blog"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
android:text="red"
android:gravity="center_horizontal" //这⾥字⽔平居中
android:background="#aa0000"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
android:text="green"
android:gravity="center_horizontal "
android:background="#00aa00"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
AbsoluteLayout:
AbsoluteLayout 可以让⼦元素指定准确的x/y坐标值,并显⽰在屏幕上。(0, 0)为左上⾓,当向下或向右移动时,坐标值将变⼤。AbsoluteLayout 没有页边框,允许元素之间互相重叠(尽管不推荐)。我们通常不推荐使⽤AbsoluteLayout ,除⾮你有正当理由要使⽤它,因为它使界⾯代码太过刚性,以⾄于在不同的设备上可能不能很好地⼯作。
我们看⼀下效果图:
android:layout_height="fill_parent"
>
android:text="Welcome to Mr Wei's blog"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
android:layout_x="250px" //设置按钮的X坐标
android:layout_y="40px" //设置按钮的Y坐标
android:layout_width="70px" //设置按钮的宽度
android:layout_height="wrap_content"
android:text="Button"
/>
RelativeLayout:
RelativeLayout 允许⼦元素指定他们相对于其它元素或⽗元素的位置(通过ID 指定)。因此,你可以以右对齐,或上下,或置于屏幕中央的形式来排列两个元素。元素按顺序排列,因此如果第⼀个元素在屏幕的中央,那么相对于这个元素的其它元素将以屏幕中央的相对位置来排列。如果使⽤XML 来指定这个layout ,在你定义它之前,被关联的元素必须定义。
让我们看⼀下效果图:
其中l 代码如下:
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Welcome to Mr Wei's blog:"/>
android:id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/label"/>
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/entry"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip"
android:text="OK" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/ok"
android:layout_alignTop="@id/ok"
android:text="Cancel" />
TableLayout:
TableLayout 将⼦元素的位置分配到⾏或列中。⼀个TableLayout 由许多的TableRow 组成,每个TableRow 都会定义⼀个row (事实上,你可以定义其它的⼦对象,这在下⾯会解释到)。TableLayout 容器不会显⽰row 、cloumns 或cell 的边框线。每个row 拥有0个或多个的cell ;每个cell 拥有⼀个View 对象。表格由列和⾏组成许多的单元格。表格允许单元格为空。单元格不能跨列,这与HTML中的不⼀样。
下⾯让我们看⼀下效果图:
其中l 代码如下:
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:stretchColumns="1">
//这⾥是上图中的分隔线
android:padding="3dip" />android学习教程

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。