4
A
回答
3
EditText ET =(EditText)findViewById(R.id.yourtextField);
ET.setOnFocusChangeListener(new OnFocusChangeListener() {
public void onFocusChange(View arg0, boolean arg1) {
String myText = ET.getText();
//Do whatever
}
5
設置setOnFocusChangeListener
您的EditText ......
editText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(!hasFocus){
//this if condition is true when edittext lost focus...
//check here for number is larger than 10 or not
editText.setText("10");
}
}
});
+0
顯然晚會晚了,但在這裏使用setText會輸出警告「getTextBeforeCursor on inactive InputConnection」 –
相關問題
- 1. 在android中更改活動的焦點
- 2. 顯示軟焦點更改焦點edittext android
- 3. Qt焦點更改順序
- 4. 焦點更改CSS屬性
- 5. 在xaml中更改焦點
- 6. 使用JavaScript更改焦點
- 7. 更改焦點(JTextArea和JOptionPane)
- 8. Android自動對焦更改
- 9. $(this)在更改焦點時未更新
- 10. 如何更改Java Android Studio中的EditText的自動焦點?
- 11. 更改爲TabItem時的焦點
- 12. 如何更改tabhost中的Tab焦點?
- 13. 如何更改tabhost中的Tab焦點?
- 14. 更改高度元素的焦點
- 15. 更改焦點插入的值
- 16. 如何更改c#中的TextBox焦點?
- 17. 更改EditText的焦點顏色?
- 18. 焦點不會從EditText更改爲WebView中的TextBox android
- 19. Android窗口焦點*更改的時間是?
- 20. 根據焦點更改android編輯框中的文本顏色
- 21. 如何收聽Talkback在Android中的焦點更改?
- 22. Android EditText焦點
- 23. 將EditText更改爲焦點更改的TextView
- 24. 更改焦點時D3的刻度更改位置
- 25. Android ImageButton不會改變焦點
- 26. 更改輸入焦點顏色
- 27. 將焦點更改爲組合框
- 28. 通過按Enter鍵更改NSTexfield焦點
- 29. 如何更改ime鍵盤焦點鍵?
- 30. 將焦點更改爲主窗體
可能:http://stackoverflow.com/questions/4310525/android-on-edittext-changed-listener你有什麼你想要。 – icastell