
org.holoeverywhere.internal.NumberPickerEditText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addon-facebook Show documentation
Show all versions of addon-facebook Show documentation
Facebook SDK special for using with HoloEverywhere library
The 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 - 2025 Weber Informatics LLC | Privacy Policy