我需要抓住当EditText
失去焦点时,我已经搜索了其他问题,但我没有找到答案。
我像这样使用OnFocusChangeListener
OnFocusChangeListener foco = new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
// TODO Auto-generated method stub
}
};
但是,它对我不起作用。
实现onFocusChange
的setOnFocusChangeListener
,并且hasFocus有一个布尔参数。当这是错误的时候,你已经失去了对另一个控件的关注。
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
}
}
});
如果你想要分解使用这个接口,你的Activity
实现OnFocusChangeListener()
,例如:
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) {
editTextResearch.setText("");
editTextMyWords.setText("");
editTextPhone.setText("");
}
if (!hasFocus){
editTextResearch.setText("BlaBlaBla");
editTextMyWords.setText(" One Two Tree!");
editTextPhone.setText("\"your phone here:\"");
}
}
你在!hasFocus
中编码的任何东西都是为了失去焦点的项目的行为,这应该是诀窍!但请注意,在这种状态下,焦点的改变可能会覆盖用户的条目!
科特林的方式
editText.setOnFocusChangeListener { _, hasFocus ->
if (!hasFocus) { }
}
它的工作正常
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();
}
}
使用Java 8 lambda表达式:
editText.setOnFocusChangeListener((v, hasFocus) -> {
if(!hasFocus) {
String value = String.valueOf( editText.getText() );
}
});