176

我需要抓住EditText注意力不集中的时候,我搜索了其他问题,但没有找到答案。

OnFocusChangeListener是这样用的

OnFocusChangeListener foco = new OnFocusChangeListener() {

    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        // TODO Auto-generated method stub

    }
};

但是,它对我不起作用。

4

5 回答 5

377

onFocusChangehasFocus的实现setOnFocusChangeListener并且有一个布尔参数。如果这是错误的,您就失去了对另一个控件的关注。

 EditText txtEdit = (EditText) findViewById(R.id.edittxt);

 txtEdit.setOnFocusChangeListener(new OnFocusChangeListener() {          
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if (!hasFocus) {
               // code to execute when EditText loses focus
            }
        }
    });
于 2012-05-16T21:49:18.977 回答
9

如果您想对该接口进行分解使用,请使用您的实现,例如ActivityOnFocusChangeListener()

public class Shops extends AppCompatActivity implements View.OnFocusChangeListener{

在你的OnCreate你可以添加一个监听器,例如:

editTextResearch.setOnFocusChangeListener(this);
editTextMyWords.setOnFocusChangeListener(this);
editTextPhone.setOnFocusChangeListener(this);

然后android studio会提示你从界面添加方法,接受它......它会像:

@Override
public void onFocusChange(View v, boolean hasFocus) {
  // todo your code here...
}

因为你有一个分解的代码,你只需要这样做:

@Override
public void onFocusChange(View v, boolean hasFocus) {
  if (!hasFocus){
    doSomethingWith(editTextResearch.getText(),
      editTextMyWords.getText(),
      editTextPhone.getText());
  }
}

这应该够了吧!

于 2016-06-15T09:36:38.727 回答
7

科特林方式

editText.setOnFocusChangeListener { _, hasFocus ->
    if (!hasFocus) {  }
}
于 2019-03-05T09:51:55.413 回答
1

其工作正常

EditText et_mobile= (EditText) findViewById(R.id.edittxt);

et_mobile.setOnFocusChangeListener(new OnFocusChangeListener() {          
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        if (!hasFocus) {
            // code to execute when EditText loses focus
            if (et_mobile.getText().toString().trim().length() == 0) {
                CommonMethod.showAlert("Please enter name", FeedbackSubmtActivity.this);
            }
        }
    }
});



public static void showAlert(String message, Activity context) {

    final AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setMessage(message).setCancelable(false)
            .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {

                }
            });
    try {
        builder.show();
    } catch (Exception e) {
        e.printStackTrace();
    }

}
于 2017-10-30T12:40:10.327 回答
1

使用 Java 8 lambda 表达式:

editText.setOnFocusChangeListener((v, hasFocus) -> {
    if(!hasFocus) {
        String value = String.valueOf( editText.getText() );
    }        
});
于 2019-03-29T12:46:16.613 回答