Android 五大布局
2010-07-04 23:38:00 来源:WEB开发网< TextView android:text="Ctrl-S" android:gravity="right" />
< /TableRow>
< View android:layout_height="2dip" android:background="#FF909090" />
< TableRow>
< TextView android:text="X" />
< TextView android:text="Export..." />
< TextView android:text="Ctrl-E" android:gravity="right " />
< /TableRow>
< View android:layout_height="2dip" android:background="#FF909090" />
< TableRow>
< TextView android:layout_column="1" android:text="Quit"
android:padding="3dip" />
< /TableRow>
< /TableLayout>
AbsoluteLayout:
AbsoluteLayout 可以让子元素指定准确的x/y坐标值,并显示在屏幕上。(0, 0)为左上角,当向下或向右移动时,坐标值将变大。AbsoluteLayout 没有页边框,允许元素之间互相重叠(尽管不推荐)。我们通常不推荐使用 AbsoluteLayout ,除非你有正当理由要使用它,因为它使界面代码太过刚性,以至于在不同的设备上可能不能很好地工作。
其中Main.xm l代码如下:
?View Code XML
< ?xml version="1.0" encoding="utf-8"?>
< AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
< EditText android:text="Welcome to Mr Wei's blog"
android:layout_width="fill_parent" android:layout_height="wrap_content" />
< Button android:layout_x="250px" android:layout_y="40px"
android:layout_width="70px" android:layout_height="wrap_content"
android:text="Button" />
< /AbsoluteLayout>
原文:http://dev.10086.cn/cmdn/wiki/index.php?edition-view-4128-1.html
更多精彩
赞助商链接