Skip to content

Commit

Permalink
[Fix] app keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
O-h-y-o committed Jan 26, 2024
1 parent 63f07d4 commit 8d608db
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ko/posts/vue3+quasar/app-keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,11 @@ export const controlKeyboard = (
e: Event
) => {
if (
useCommonStore().isKeyboardUp &&
document.activeElement instanceof HTMLInputElement &&
useCommonStore().previousTargetInstance ===
useCommonStore().currentTargetInstance
$q.platform.is.android ||
(useCommonStore().isKeyboardUp &&
document.activeElement instanceof HTMLInputElement &&
useCommonStore().previousTargetInstance ===
useCommonStore().currentTargetInstance)
) {
return;
}
Expand Down Expand Up @@ -155,16 +156,15 @@ export const controlKeyboardMain = (
<br/> <br/>
### Android 자동 화면 조절 방지
### Android 자동 화면 조절
Android에서 Keyboard가 올라올때 화면이 조절되는 것을 방지하려면 다음 문구를 추가해주세요.
```xml
<!-- AndroidManifest.xml -->

<activity
android:windowSoftInputMode="adjustNothing"
android:windowSoftInputMode="adjustResize"
>

</activity>
```

0 comments on commit 8d608db

Please sign in to comment.