編輯:關於Android編程
推薦閱讀:Android如何通過手機獲取驗證碼來完成注冊功能
先給大家展示下界面效果圖,感覺滿意,請參考實現代碼。
Main.xml源碼
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchColumns="1" android:background="@drawable/bluesky" > <!-- 賬號 --> <TableRow> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="賬號:" android:textSize="16sp" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="手機號" android:selectAllOnFocus="true" /> </TableRow> <!-- 密碼 --> <TableRow> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="密碼:" android:textSize="16sp" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="numberPassword" /> </TableRow> <!-- 生日 --> <TableRow> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="生日:" android:textSize="16sp" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="date" /> </TableRow> <!-- 住址 --> <TableRow> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="住址:" android:textSize="16sp" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textPostalAddress" /> </TableRow> <!-- 電子郵箱 --> <TableRow> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="電子郵箱:" android:textSize="16sp" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textEmailAddress" /> </TableRow> <!-- 注冊 --> <TableRow> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="注冊" /> </TableRow> </TableLayout>
到此關於Android用戶注冊界面的全部代碼就給大家介紹完了,代碼有bug歡迎提出,小編會及時和大家聯系,共同學習進步!
百度有錢花是百度金融旗下的消費金融品牌,是面向大眾的個人消費金融權益平台,打造創新消費信貸模式,目前已經在多個產業進行探索和布局,其教育信貸業務開通了遠程異
1.Introduction1.1.gradle構建系統的目標1)讓重用代碼和資源變得更加容易2)讓創建同一應用程序的不同版本變得更加容易,無論是多個apk發布版本還是同
Android 顏色處理(八) SweepGradient 掃描/梯度渲染為什麼什麼叫掃描渲染呢? 相信大家都看過雷達掃描的效果,尤其是在安全軟件中. &nbs
又是一個不眠夜 問題來了,我們寫個android項目部分代碼想生成jar包,並且將jar包做混淆,不被別人切! 首先講要代碼生成jar包,這個就不多說了。然後找到找到SD