All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.holoeverywhere.internal.NumberPickerEditText Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version

package org.holoeverywhere.internal;

import org.holoeverywhere.widget.EditText;

import android.content.Context;
import android.util.AttributeSet;
import android.view.inputmethod.EditorInfo;

public class NumberPickerEditText extends EditText {
    public NumberPickerEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void onEditorAction(int actionCode) {
        super.onEditorAction(actionCode);
        if (actionCode == EditorInfo.IME_ACTION_DONE) {
            clearFocus();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy