Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 411cc218 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Prevent IME on digits field

Bug: 6154760
Change-Id: I72c0d42c2e39290c9d62506c262b9fc0e23a3760
parent dd3dc56d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ public class DigitsEditText extends EditText {
    public DigitsEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
        setInputType(getInputType() | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
        setShowSoftInputOnFocus(false);
    }

    @Override