我正在尝试从焦点更改侦听器更新编辑文本,但无法更新。正在调用日志,但未调用编辑文本。
Contact_Fragment(片段)
toET.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
// TODO Auto-generated method stub
if (!hasFocus) {
Log.d("Focus", hasFocus + "");
if (v.getId() == R.id.eTto) {
if (toET.getText().toString().trim().length() > 0
&& (!toET.getText().toString().endsWith(","))) {
Log.d("Append", "true");
toET.append(",");
}
}
});