无法解析(或导入)Android小部件OnEditorActionListener

时间:2016-07-31 17:41:06

标签: android android-studio android-edittext listener actionlistener

我不熟悉编码并在尝试使用 OnEditorActionListener 时出现错误,以便在用户将数据输入EditText并按下软键盘上的“Go”后帮助执行操作。我已经搜索过并且提供的大多数解决方案都假设已经导入了OnEditorActionListener。

用作生成我自己的代码的指南的文章:

https://developer.android.com/training/keyboard-input/style.html

https://github.com/codepath/android_guides/wiki/Basic-Event-Listeners

我的XML代码:

<EditText
        android:id="@+id/editTextCurrentBalance"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ems="10"
        android:imeOptions="actionGo"
        android:inputType="numberDecimal"
        android:singleLine="true">
        <requestFocus />
</EditText>

我的Java代码(摘录):

import android.widget.TextView.OnEditorActionListener; 

EditText editTextListener = (EditText) findViewById(R.id.editTextCurrentBalance);
editTextListener.setOnEditorActionListener(new OnEditorActionListener(){...});

第一个错误:“import android.widget.TextView.OnEditorActionListener;”给我一个错误,上面写着“未使用的导入语句”,整行代码都是灰色的。

第二个错误:“无法解析符号'setOnEditorActionListener'”

修复尝试:当我按下CTRL + I时,我收到一条消息“找不到要实施的方法”。

感谢任何帮助!

更新: OnEditorActionListener的My Java代码不在OnCreate方法括号中。一旦放入,错误就会消失。

1 个答案:

答案 0 :(得分:-1)

您好,欢迎来到SO

第一个错误:这实际上不是一个错误,它只是一个警告,你的IDE给你的意思是你导入了一个你没有使用的类。删除任何未使用的导入(Android Studio中的Ctrl + Alt + O)

是一个很好的做法

第二个错误:我相信这个会弹出,因为你还没有导入EditText类,但我不确定

无论如何,请在此处获取战利品

//We are import the classes you need here
import android.widget.EditText;
import android.widget.TextView;

//here is just the onCreate method from an Activity, 
//I have left out most of the boilerplate code

public class MainActivity extends AppCompatActivity {
    //make sure you are placing the code in onCreate method, or
    //a method called from onCreate, or any method other life cycle 
    //method that suits yours needs
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        /*snip*/

        //grabing the EditText object by it's ID you defined in the layout file
        //I have renamed the object to "editText" because "listener" 
        //suffix made no sense here, it's an EditText class you are 
        //crating, which is not a listener 
        EditText editText = (EditText) findViewById(R.id.editTextCurrentBalance);

        //here we are creating a new anonymous class and setting to
        //trigger when an "Editor Action" happens on editTextListener
        editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
                //do something here
                return false;
            }
        });
    }

如果我们不打算在其他地方重用该类,那么匿名类只是创建新类的一种更简单的方法。它特定于您当前的需求

希望这有助于:)并且学习Android和Java的好运