- 論壇徽章:
- 0
|
1.png (33.57 KB, 下載次數(shù): 122)
下載附件
2015-07-24 14:07 上傳
Demo2\youhao\src\main\res\layout\activity_main.xml- <TableLayout 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:stretchColumns="1"
- tools:context=".MainActivity">
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="用戶名"
- android:textSize="16dp" />
- <EditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="請(qǐng)?zhí)顚懙卿涃~號(hào)"
- android:selectAllOnFocus="true" />
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="密碼"
- android:textSize="16dp" />
- <EditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="請(qǐng)?zhí)顚懙卿浢艽a"
- android:inputType="numberPassword" />
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="年齡"
- android:textSize="16dp" />
- <EditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="請(qǐng)?zhí)顚懩挲g"
- android:inputType="number" />
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="生日"
- android:textSize="16dp" />
- <EditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="請(qǐng)?zhí)顚懮?quot;
- android:inputType="date" />
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="電話號(hào)碼"
- android:textSize="16dp" />
- <EditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="請(qǐng)?zhí)顚戨娫捥?hào)碼"
- android:inputType="phone"
- android:selectAllOnFocus="true" />
- </TableRow>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="注冊(cè)
- " />
- </TableLayout>
復(fù)制代碼 |
|