일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Android
- 안드로이드 푸쉬
- 설치
- Mail Server
- 폼메일
- html5
- 안드로이드 푸시
- UML
- 우분투
- chart.js
- C# IO
- WebView
- C#
- 안드로이드
- PHP
- mysql
- php 시큐어코딩
- roundcube
- FCM
- android 효과음
- 자동 생성
- 안드로이드 gcm
- not working
- soundpool
- php 취약점
- curl
- dovecot
- javascript
- xe
- 자바스크립트
- Today
- Total
그러냐
안드로이드 웹뷰 키보드 스크롤 본문
텍스트를 입력하려고 하면 키보드가 올라와서 입력창을 가리게 된다
그래서
android:windowSoftInputMode="adjustResize"
뭐 이런식으로 검색하면 나오는 방식대로 처리해왔었다
그런데 어느 순간 이게 안먹네?
안드로이드 버젼업 되면서 안되는건지 어쩐지 별짓을 다해봐도 안된다
그러다가 스택오버플로우에서 해결책을 찾았다.. ㅜㅜ
하단에 링크걸어놨다
핵심 내용은 styles.xml에다가
<style name="webview" parent="AppTheme.NoActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">false</item>
</style>
이런 식으로 추가를 하고 메니페스트에서 테마를 webview 로 지정한다
android:theme="@style/webview"
이렇게..
나는 parent="AppTheme.NoActionBar" 이부분이 에러나서 대충 다른걸로 바꿔주었다
잘된다..ㅜㅜ
아래 링크 참조
stackoverflow.com/questions/40279364/android-webview-doesnt-scroll-enough-when-keyboard-opens
'android' 카테고리의 다른 글
android soundpool 일부 재생 안되는 경우 (0) | 2020.09.29 |
---|---|
안드로이드 FCM 화면 깨우기 (0) | 2020.09.26 |
Android Studio 에서 Gradle Sync 시 오류 대처 방법 (0) | 2020.08.06 |
안드로이드 Button style 버튼 꾸미기 (0) | 2020.07.13 |
flutter android.support.v4.content does not exist, cannot find symbol ActivityCompat, ContextCompat (0) | 2020.06.18 |