본문
[2017.10.30] 57. 안드로이드 키보드 고정 설정
컴퓨터/이론: 안드로이드 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 |
스크린 샷
설정 전 |
설정 후 |
#안드로이드 키보드 고정
'컴퓨터 > 이론: 안드로이드' 카테고리의 다른 글
[2017.10.31] 62. Firebase - Authentication 사용 (0) | 2017.10.31 |
---|---|
[2017.10.31] 60. Firebase 설치 방법 (0) | 2017.10.31 |
[2017.10.30] 56. 에뮬레이터(AVD) 키보드 설정 (0) | 2017.10.30 |
[2017.10.18] 53. JSON 데이터 가공 [라이브러리(Glide, GSON) 사용 O] (0) | 2017.10.18 |
[2017.10.18] 52. JSON 데이터 가공 [라이브러리 사용 X] (0) | 2017.10.18 |
댓글