OnKeyListener仅检测返回键

时间:2011-08-29 15:42:13

标签: android android-edittext

我创建了最简单的Android项目,以便使用OnKeyListener进行测试,以查看EditText小部件中正在输入的内容。问题是onKey方法只针对返回键触发 - 没有其他方法。根据我的下面的代码,什么可能阻止OnKeyListener工作?

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>

再次,我获得日志语句的唯一按键是返回键(“keyCode = 66”)。我还使用了断点来确认这是代码执行的唯一时间。我的问题可能是什么?感谢。

1 个答案:

答案 0 :(得分:6)

您应该使用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
        }
};