Опции Android ime не работают

Я пытаюсь настроить прослушиватель для параметров Android Ime, который хранит значение EditText в общих настройках. Я настроил его так, но когда я нажимаю клавишу "return" на моей клавиатуре, ничего не происходит, и он никогда не попадает в слушателя. Любые идеи о том, почему я делаю неправильно?

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_settings);

    mDone = (Button) findViewById(R.id.done);
    mTemperature = (EditText) findViewById(R.id.temperature);

    mDone.setOnEditorActionListener(new TextView.OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {

            int action = event.getAction();
            if (actionId == EditorInfo.IME_ACTION_DONE) {
                // Do whatever you want here
                SharedPreferences preferences = getSharedPreferences(SHARED_PREFERENCES, Context.MODE_PRIVATE);
                SharedPreferences.Editor edit = preferences.edit();

                int updateSweater = Integer.parseInt(mTemperature.getText().toString());
                edit.remove("sweater");
                edit.putInt("sweater", updateSweater);
                edit.commit();
                preferences.getInt("sweater", 0);

                Toast.makeText(SettingsActivity.this, "Sweater Weather Updated", Toast.LENGTH_SHORT).show();

                Intent intent = new Intent(SettingsActivity.this, MainActivity.class);
                startActivity(intent);
                return true;
            }
            return false;
        }
    });
}

Вот как я настроил мой EditText

<EditText
    android:id="@+id/temperature"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@color/white"
    android:textColorHint="@color/gray"
    android:textSize="25sp"
    android:layout_centerHorizontal="true"
    android:hint="Farenheit"
    android:inputType="phone"
    android:imeOptions="actionDone"/>

2 ответа

Решение

Я считаю, что это не работает, потому что setOnEditorActionListener должны быть определены для вашего EditText (а не к твоей кнопке).

mTemperature = (EditText) findViewById(R.id.temperature);

mTemperature.setOnEditorActionListener(new TextView.OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {

        int action = event.getAction();
        if (actionId == EditorInfo.IME_ACTION_DONE) {
            // Do whatever you want here
            SharedPreferences preferences = getSharedPreferences(SHARED_PREFERENCES, Context.MODE_PRIVATE);
            SharedPreferences.Editor edit = preferences.edit();

            int updateSweater = Integer.parseInt(mTemperature.getText().toString());
            edit.remove("sweater");
            edit.putInt("sweater", updateSweater);
            edit.commit();
            preferences.getInt("sweater", 0);

            Toast.makeText(SettingsActivity.this, "Sweater Weather Updated", Toast.LENGTH_SHORT).show();

            Intent intent = new Intent(SettingsActivity.this, MainActivity.class);
            startActivity(intent);
            return true;
        }
        return false;
    }
});

Если вам нужно предпринять какие-либо действия после нажатия mDoneлучше установить ClickListener в mDone

Я подозреваю, что вам нужно сделать mTeuration.setOnEditorActionListener, так как это EditText. Кроме того, проверьте наличие нулевого значения в событии, actionId может быть равен EditorInfo.IME_ACTION_DONE, когда событие равно нулю.

Ime Options не будет работать для нескольких строк EditText.

Измените его на одну строку.

установите параметр ниже в вашем XML-файле:

android:singleLine="правда"

Другие вопросы по тегам