首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android开发之RelativeLayout跟RableLayout

2012-11-08 
Android开发之RelativeLayout和RableLayout这几天学习andriod的布局,总体感觉,linearLayout和TableLayout

Android开发之RelativeLayout和RableLayout

      这几天学习andriod的布局,总体感觉,linearLayout和TableLayout都相对简单一点,而RelativeLayout稍微复杂一点,所以贴出来让大家看看,如下是布局图

Android开发之RelativeLayout跟RableLayout

如下是main.xml文件的内容<?xml version="1.0" encoding="utf-8"?>

<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:stretchColumns="1"    >    <TableRow>    <TextView     android:text="URL"    />    <EditText    android:id="@+id/entry"    android:layout_span="3"    />    </TableRow>    <View    android:layout_height="2px"    android:background="#0000FF"    />    <TableRow>    <Button    android:id="@+id/cancel2"    android:text="Cancel"    android:layout_column="2"    />    <Button    android:id="@+id/ok2"    android:text="OK"    />    </TableRow></TableLayout>




热点排行