Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第26章、OnKeyListener鍵盤事件(從零開始學Android)

第26章、OnKeyListener鍵盤事件(從零開始學Android)

編輯:Android技術基礎

 可以通過鍵盤事件對EMAIL進行驗證(這是網上最多的例子),也可以加入關鍵字非法文字的過濾。如果要監聽鍵盤事件,必須知道按下和松開兩種不同的操作,在OnKeyEvent可以找到按下松開的鍵。我們這個案例是輸入銀行卡號,用大字四個一組分隔回顯出來,用於提醒是否輸錯!

  知識點:OnKey

  \

 

一、設計界面

  1、打開“res/layout/activity_main.xml”文件。

  (1)從工具欄向activity拖出1個文本編輯框EditText、2個文本標簽TextView。

  \

  3、打開activity_main.xml文件。

  完整代碼如下:

[html] view plain copy  
  1. <LinearLayout   
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:orientation="vertical">  
  6.   
  7.     <TextView  
  8.         android:id="@+id/prompt"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="銀行賬號:" />  
  12.   
  13.     <EditText  
  14.         android:id="@+id/accout"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:ems="10" />  
  18.   
  19.     <TextView  
  20.         android:id="@+id/info"  
  21.         android:layout_width="wrap_content"  
  22.         android:layout_height="wrap_content"  
  23.         android:textSize="25sp"  
  24.         android:text="" />  
  25.