首先設置只能輸入數字:
- <EditText
- Android:id="@+id/edit_digit_input"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:digits="1234567890."
- android:singleLine="true"
- />
再者代碼裡面設置輸入法類型:
- editText.setInputType(EditorInfo.TYPE_CLASS_PHONE);
則如果該EditText獲得焦點,會彈出數字輸入法的模擬鍵盤
更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11