android – 如何在用户输入时触发操作?

前端之家收集整理的这篇文章主要介绍了android – 如何在用户输入时触发操作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果(在 Android中)我有一个EditText框,当用户输入数据并点击return / Next时,如何触发事件?

我尝试过使用下面的代码,但似乎没有效果.我还从类型new extView.OnEditorActionListener(){}得到一个’方法onEditorAction(EditText,int,KeyEvent)从不在本地使用’错误.

myEditText.setOnEditorActionListener(new EditText.OnEditorActionListener() {
            public boolean onEditorAction(EditText v,int actionId,KeyEvent event) {
                if (actionId == EditorInfo.IME_ACTION_NEXT)
                {

解决方法

我玩了很多东西,发现下面的代码有效:
myEditText.setOnEditorActionListener(new OnEditorActionListener() {                     
    @Override
    public boolean onEditorAction(TextView v,KeyEvent event) {
        // Do some stuff
    }
});
原文链接:/android/316472.html

猜你在找的Android相关文章