如何远离EditText?

时间:2012-03-20 18:02:25

标签: android

在我的应用程序中,当EditText失去焦点时,我需要做一些事情。编辑EditText时,我无法让它失去焦点。在Windows手机中有this.Focus();方法但在android中它似乎不一样。我该怎么办???

1 个答案:

答案 0 :(得分:1)

要远离编辑文本,应使用 clearFocus();

现在,如果你需要处理任何特定事件,如果焦点改变了那么......

**use Focus Change listener on view.**


onFocusChange(View v, boolean hasFocus)
  //Called when the focus state of a view has changed.
if(!hasfocus)
{
//Your piece of code if the focus is lost on text view..
}