WEB开发网
开发学院手机开发Android 开发 Android 五种布局模式 阅读

Android 五种布局模式

 2013-03-13 19:00:05 来源:WEB开发网   
核心提示::layout_alignRight="@id/btnmiddle"> </Button></RelativeLayout>5、 坐标布局(AbsoluteLayout)描述:对其控件进行直接定位,增加灵活性,Android 五种布局模式(7),常用属性:and
:layout_alignRight="@id/btnmiddle">
</Button>
</RelativeLayout>

5、 坐标布局(AbsoluteLayout)

描述:对其控件进行直接定位,增加灵活性。
常用属性:android:layout_x,android:layout_y.

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<TextView
android:layout_width="wrap_content"
android:text="UserName:"
android:layout_height="wrap_content"
android:id="@+id/tvName"
android:layout_y="20dip"
android:layout_x="50dip">
</TextView>
<TextView
android:layout_width="wrap_content"
android:text="Password:"
android:layout_height="wrap_content"
android:id="@+id/tvPassword"
android:layout_y="100dip"
android:layout_x="55dip">
</TextView>

<EditText
android:layout_width="150px"

上一页  2 3 4 5 6 7 8 9  下一页

Tags:Android 布局 模式

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接