컴퓨터/이론: 안드로이드
[2017.10.30] 57. 안드로이드 키보드 고정 설정
heepie
2017. 10. 30. 19:52
도입
키보드 때문에 레이아웃에 영향을 주는 경우가 있다.
이러한 경우, 설정을 통해 레이아웃을 고정할 수 있다.
설정
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <application android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:windowSoftInputMode="adjustResize"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> | cs |
스크린 샷
설정 전 |
설정 후 |
#안드로이드 키보드 고정