我已经创建了最简单的android项目,以便使用onkeylister来测试在edittext小部件中输入的内容。问题是onkey方法只为返回键触发,没有其他方法。根据下面的代码,有什么可能阻止onkeylister工作?

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        setViewListeners();
    }

    private void setViewListeners() {

        EditText et1 = (EditText)findViewById(R.id.text1);
        EditText et2 = (EditText)findViewById(R.id.text2);

        et1.setOnKeyListener(new OnKeyListener() {

            @Override
            public boolean onKey(View v, int keyCode, KeyEvent event) {
                Log.i("INFO", "keyCode=" + keyCode);
                return false;
            }
        });
     }
}

布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <EditText
          android:id="@+id/text1"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          />
    <Spinner
        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusable="true"
        />
    <EditText
        android:id="@+id/text2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />
</LinearLayout>

再一次,我得到一个log statement的唯一按键是return键(“keycode=66”)。我还使用了断点来确认这是代码执行的唯一时间。我的问题是什么?谢谢。

最佳答案

您应该使用textwatcher而不是onclicklistener

mPostEditText.addTextChangedListener(watcher);

TextWatcher watcher = new TextWatcher() {
    @Override
    public void onTextChanged(CharSequence charsequence, int i, int j, int k) {
        // TODO Auto-generated method stub
        }
    }
        @Override
    public void beforeTextChanged(CharSequence charsequence, int i, int j,  int k) {
        // TODO Auto-generated method stub
        }
        @Override
    public void afterTextChanged(Editable editable) {
        // TODO Auto-generated method stub
        }
};

08-25 17:41