Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android imeOptions的用法及注意事項

android imeOptions的用法及注意事項

編輯:關於Android編程

我們在android開發中,必不可少的會使用到文本框(EditText)來進行數據錄入,也就會需要對輸入法進行一些控制。
android:inputType :指定輸入法的類型,int類型,可以用|選擇多個。取值可以參考:android.text.InputType類。
取值包括 text, textUri, phone,number,等。
android:imeOptions :指定輸入法窗口中的回車鍵的功能,可選值為normal,actionUnspecified,actionNone,actionGo,actionSearch,actionSend,actionNext,actionDone。

部分輸入法對此的支持可能不夠好。

 

[html]  
  1. 下面的LAYOUT定義文件舉了一些例子說明inputType和imeOptions的使用。
  2. android:layout_width=fill_parent android:layout_height=wrap_content
  3.  
  4. android:hint=Normal text
  5.  
  6. android:inputType=text
  7.  
  8. android:imeOptions=actionNext
  9. />
  10. android:layout_width=fill_parent android:layout_height=wrap_content
  11.  
  12. android:hint=Integer only
  13.  
  14. android:inputType=number
  15.  
  16. android:imeOptions=actionNext
  17. />
  18. android:layout_width=fill_parent android:layout_height=wrap_content
  19.  
  20. android:hint=Decimal only
  21.  
  22. android:inputType=numberDecimal
  23.  
  24. android:imeOptions=actionNext
  25. />
  26. android:layout_width=fill_parent android:layout_height=wrap_content
  27.  
  28. android:hint=Phone number
  29.  
  30. android:inputType=phone
  31.  
  32. android:imeOptions=actionNext
  33. />
  34. android:layout_width=fill_parent android:layout_height=wrap_content
  35.  
  36. android:hint=Email
  37.  
  38. android:inputType=textEmailAddress
  39.  
  40. android:imeOptions=actionSend
  41. />
  42. android:layout_width=fill_parent android:layout_height=wrap_content
  43.  
  44. android:hint=Web Site
  45.  
  46. android:inputType=textUri
  47.  
  48. android:imeOptions=actionDone/>
  49. 隨著inputType的不同,輸入法的鍵盤也自動跟著發生變化,並且在inputType=number時,是不允許輸入英文字符的。
  50. 注意:android:phoneNumber,android:numeric,這幾個屬性均已被廢棄,不少輸入法已經不再支持。直接使用inputType比較好。另外,在做這種調試時,最好使用Google拼音,或android鍵盤來進行,否則imeOptions可能不能正常顯示,比如百度輸入法在我刪除它之前就一直不支持imeOptions。
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved