Android游戲開發系統控件-EditText
EditText(輸入框)是與用戶交互數據常用的組件,例如在登錄游戲,輸入賬號、密碼等信息時經常用到。
創建項目“EditTextProject”
功能:在輸入框中輸入內容並能顯示到TextView當中
項目運行結果截圖:
項目源碼如下:
main.xml(布局文件)
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- android:id="@+id/tv"
- />
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:hint="提示消息"
- android:id="@+id/et"
- />
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="獲取EditText內容!"
- android:id="@+id/btn"
- />
-
- </LinearLayout>