如何在模拟器上触发edittext OnEditorActionListener(启用硬件键盘)?

时间:2015-01-07 07:42:35

标签: android android-emulator

如何在模拟器上触发edittext OnEditorActionListener(IME_ACTION_SEARCH)(启用硬件键盘)。任何人都可以帮助我。

我试过输入密钥。这不行。

1 个答案:

答案 0 :(得分:0)

我尝试了这个解决方案,它对我有用。

YourEditText.setOnEditorActionListener(new OnEditorActionListener() {

        @Override
        public boolean onEditorAction(TextView v, int actionId,
                KeyEvent event) {
            // TODO Auto-generated method stub
            if ((event.getAction() == KeyEvent.ACTION_DOWN)) {
                Toast.makeText(MainActivity.this, "Pressed",
                        Toast.LENGTH_SHORT).show();
            }
            return false;
        }
    });