在Android App應用中,OnFocuChangeListener焦點事件是必不可少的,我們在上一章的基礎上來學習一下如何實現。
基本知識點:OnFocuChangeListener事件
一、界面
打開“res/layout/activity_main.xml”文件。
1、分別從工具欄向activity拖出2個編輯框EditText。控件來自Form Widgets。
2、打開activity_main.xml文件。
[html] view plain copy
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <EditText
- android:id="@+id/mobile"
- android:layout_width="190dp"
- android:layout_height="wrap_content"
- android:text="手機號碼" />
-
- <EditText
- android:id="@+id/address"
- android:layout_width="190dp"
- android:layout_height="wrap_content"
- android:text="地址" />
-