content_modify_mach_code.xml
622 Bytes
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="200dp"
android:maxLength="8"
android:inputType="text"/>
<Button
android:id="@+id/modify"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="修改"
android:layout_below="@id/content"/>
</RelativeLayout>