歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android游戲開發系統控件-EditText

Android游戲開發系統控件-EditText

EditText(輸入框)是與用戶交互數據常用的組件,例如在登錄游戲,輸入賬號、密碼等信息時經常用到。

創建項目“EditTextProject”

功能:在輸入框中輸入內容並能顯示到TextView當中

項目運行結果截圖:

項目源碼如下:

main.xml(布局文件)

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/hello"   
  11.         android:id="@+id/tv"  
  12.         />  
  13.     <EditText   
  14.         android:layout_width="fill_parent"  
  15.         android:layout_height="wrap_content"  
  16.         android:hint="提示消息"  
  17.         android:id="@+id/et"  
  18.         />  
  19.     <Button   
  20.         android:layout_width="fill_parent"  
  21.         android:layout_height="wrap_content"  
  22.         android:text="獲取EditText內容!"  
  23.         android:id="@+id/btn"  
  24.         />  
  25.   
  26. </LinearLayout>  
Copyright © Linux教程網 All Rights Reserved