| fac86401  孙向锦
 
初始化C5 Vote | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 |   <?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>
 |