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>
</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"
更多精彩
赞助商链接