绝对布局(AbsoluteLayout)的XML

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/AbsoluteLayout01">

<TextView
android:id="@+id/mytext"
android:text="@string/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="20dip"
android:layout_y="15dip"/>

<EditText
android:id="@+id/myedit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="12dp"
android:layout_y="48dp"
android:ems="10"
android:text="请在这里输入你的姓名" />

<Button
android:id="@+id/mybutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="79dp"
android:layout_y="110dp"
android:text="我的按钮" />

</AbsoluteLayout>

posted on 2014-11-19 20:26  Iitb  阅读(265)  评论(0)    收藏  举报

导航