8

有人可以帮助我使用软键盘输入键监听器吗?

我需要一个输入键监听器,比如一个按钮监听器,里面会有几个像这样的editext监听器

enterkey.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) { 
        if(editext1.getText().toString().equalsIgnoreCase("test1")) {
            button3.performClick();
        }
        if(editext1.getText().toString().equalsIgnoreCase("test2")) {
            button4.performClick();
        }
    }
);

我还需要知道这样的事情是否正确?

if(editext1.getText().toString().equals.null)) {
       testwrong.setText("Wrong"); 

我现在已经尝试使用此代码,但是当我按 Enter 时一直得到一个空值?任何人都可以提出一个解决方案来避免这种情况吗?

editext.setOnKeyListener(new View.OnKeyListener() {
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        // TODO Auto-generated method stub
        if (keyCode == KeyEvent.KEYCODE_ENTER) {
            if ("test1".equalsIgnoreCase(anstext.getText().toString())) {
                but4.performClick();
            }
        } else if ("test2".equalsIgnoreCase(editext.getText().toString())) {
            but5.performClick();
        }
        if ("test5".equalsIgnoreCase(editext.getText().toString())) {
            but6.performClick();
        }
        if ("test7".equalsIgnoreCase(editext.getText().toString())) {
            but7.performClick();
        }
        if (editext.getText().toString() != null) {
            testwrong.seText("wrong");
        }
        return true;
    }
});
4

3 回答 3

25

在您EditText应该使用imeOptions指定键盘操作。

<EditText
       android:id="@+id/query"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:imeOptions="actionGo"
       android:inputType="text" />

在您的活动课程中:

 EditText editText = (EditText) findViewById(R.id.query);
 editText.setOnEditorActionListener(new OnEditorActionListener() {
            public boolean onEditorAction(TextView v, int actionId,
                    KeyEvent event) {
                    if (actionId == EditorInfo.IME_ACTION_GO) {

                        return true;
                    }
                    return false;
                }
            });
于 2012-10-17T15:32:51.090 回答
11

如果您想EnteronKeyListener您的Edittext

  yourEditText.setOnKeyListener(new View.OnKeyListener() {
            public boolean onKey(View v, int keyCode, KeyEvent event) {
                // TODO Auto-generated method stub
                if (keyCode==KeyEvent.KEYCODE_ENTER) { //Whenever you got user click enter. Get text in edittext and check it equal test1. If it's true do your code in listenerevent of button3
                    if("test1".equals(edt.getText().toString())) {
                        //paste your code in button3 listener here
                        }
                }

}
    )

这部分是错误的。

if(editext1.getText().toString().equals.null)) { testwrong.setText("Wrong");

你应该改为

if (editext1.getText().toString() != null && !editext1.getText().toString().isEmpty()) {
  // doSomething
}
于 2012-10-17T15:32:11.007 回答
0

你可以用它来监听键盘事件

http://developer.android.com/reference/android/inputmethodservice/KeyboardView.OnKeyboardActionListener.html

于 2012-10-17T15:29:51.353 回答