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

第23章、OnFocuChangeListener焦點事件(從零開始學Android)

編輯:Android技術基礎

在Android App應用中,OnFocuChangeListener焦點事件是必不可少的,我們在上一章的基礎上來學習一下如何實現。

  基本知識點:OnFocuChangeListener事件

 

一、界面

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

  1、分別從工具欄向activity拖出2個編輯框EditText。控件來自Form Widgets。

  \

  2、打開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.     <EditText  
  8.         android:id="@+id/mobile"  
  9.         android:layout_width="190dp"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="手機號碼" />  
  12.   
  13.     <EditText  
  14.         android:id="@+id/address"  
  15.         android:layout_width="190dp"  
  16.         android:layout_height="wrap_content"  
  17.         android:text="地址" />  
  18.