From 4c5a862dd61b1d01e48322cd5768f5f8bf9f79c2 Mon Sep 17 00:00:00 2001 From: tom5079 Date: Tue, 13 Oct 2020 17:57:19 +0900 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c753cde8..c09fc6f6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ *Pupil, Hitomi.la viewer for Android* ![](https://img.shields.io/github/downloads/tom5079/Pupil/total) -[![](https://img.shields.io/github/downloads/tom5079/Pupil/5.1.4/Pupil-v5.1.4.apk?color=%234fc3f7&label=DOWNLOAD%20APP&style=for-the-badge)](https://github.com/tom5079/Pupil/releases/download/5.1.4/Pupil-v5.1.4.apk) +[![](https://img.shields.io/github/downloads/tom5079/Pupil/5.1.4-hotfix1/Pupil-v5.1.4-hotfix1.apk?color=%234fc3f7&label=DOWNLOAD%20APP&style=for-the-badge)](https://github.com/tom5079/Pupil/releases/download/5.1.4-hotfix1/Pupil-v5.1.4-hotfix1.apk) [![](https://discordapp.com/api/guilds/610452916612104194/embed.png?style=banner2)](https://discord.gg/Stj4b5v) # Features From 9ad008255d4208ec9033d3853431bf6e75c19bac Mon Sep 17 00:00:00 2001 From: klx7007 <67258210+klx7007@users.noreply.github.com> Date: Tue, 13 Oct 2020 22:58:13 +0900 Subject: [PATCH 2/2] =?UTF-8?q?FloatingSearchView=20imeOptions=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit imeOption을 덮어씌워서 search할때 키보드만 숨겨짐 --- .../main/java/xyz/quaver/pupil/ui/view/FloatingSearchView.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/xyz/quaver/pupil/ui/view/FloatingSearchView.kt b/app/src/main/java/xyz/quaver/pupil/ui/view/FloatingSearchView.kt index d17d3076..48af83f9 100644 --- a/app/src/main/java/xyz/quaver/pupil/ui/view/FloatingSearchView.kt +++ b/app/src/main/java/xyz/quaver/pupil/ui/view/FloatingSearchView.kt @@ -57,7 +57,7 @@ class FloatingSearchView @JvmOverloads constructor(context: Context, attrs: Attr var onFavoriteHistorySwitchClickListener: (() -> Unit)? = null init { - searchInputView.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI + searchInputView.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI or searchInputView.imeOptions searchInputView.addTextChangedListener(this) onSearchListener = this @@ -215,4 +215,4 @@ class FloatingSearchView @JvmOverloads constructor(context: Context, attrs: Attr } } } -} \ No newline at end of file +}