[안드로이드] bottomnavigation 키보드 같이 올라오는 문제 해결 방법

승아·2020년 11월 18일
1

AndroidManifest.xml

android:windowSoftInputMode="adjustPan"

 <activity android:name=".MainActivity"
            android:windowSoftInputMode="adjustPan">
           

Manifest에 소프트키보드 모드를 추가합니다. adjustPan 말고 다른 옵션들은 https://parkho79.tistory.com/59 이 사이트를 참고해주세요!

0개의 댓글