我的代码是用 android:editable="false" 把软键盘关闭了
点击listview中每一项的edittext可以得到游标焦点,绑定setOnFocusChangeListener时onFocusChange却没响应
请问是什么原因?以下是我写的监听器代码
onFocusChange里面的都没有响应for (j = 0; j < list.getCount(); j++) {

editText[j] = (EditText) list.getAdapter().getView(j, null, null).findViewById(R.id.edit_san);

editText[j].setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
// TODO Auto-generated method stub
                  System.out.println("000");
if (hasFocus) {
System.out.println("111");
} else {
System.out.println("222");
}
}
});