diff options
author | bhlee <lbsequ@users.noreply.github.com> | 2019-07-14 01:48:50 +0900 |
---|---|---|
committer | bhlee <lbsequ@users.noreply.github.com> | 2019-07-14 01:48:50 +0900 |
commit | 339569421a1f9aca1fc603d10754ac299560aac8 (patch) | |
tree | dfcec1c797f67888e409690583681b4c62f9181a /app | |
parent | f1d5c00f3b641f27b311bfa1feb388e96de6239b (diff) | |
download | AntennaPod-339569421a1f9aca1fc603d10754ac299560aac8.zip |
add android:imeOptions="flagNoFullscreen" attribute in EditText
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/gpodnetauth_credentials.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/layout/gpodnetauth_credentials.xml b/app/src/main/res/layout/gpodnetauth_credentials.xml index f995ae4cc..e8948fc52 100644 --- a/app/src/main/res/layout/gpodnetauth_credentials.xml +++ b/app/src/main/res/layout/gpodnetauth_credentials.xml @@ -36,7 +36,7 @@ android:cursorVisible="true" android:maxLines="1" android:inputType="text" - android:imeOptions="actionNext" + android:imeOptions="actionNext|flagNoFullscreen" android:nextFocusForward="@id/etxtPassword"/> <EditText @@ -50,7 +50,7 @@ android:focusable="true" android:focusableInTouchMode="true" android:cursorVisible="true" - android:imeOptions="actionGo" + android:imeOptions="actionGo|flagNoFullscreen" android:imeActionLabel="@string/gpodnetauth_login_butLabel"/> <Button |