Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 밑줄
- 뷰바인딩
- 안드로이드
- 안드로이드스튜디오
- 코틀린
- button
- firebasefunctions
- MaterialButton
- RealtimeDB
- textview
- 팝업액티비티
- 안드로이드 스튜디오
- EditText
- Android
- androidstudio
- ArrayList
- 랜덤ID
- Imageview
- ROOM
- nav_graph
- lifecyclescope
- ButtonWithButton
- FRAGMENT
- Activity
- Dialog
- Kotlin
- BottomSheetDialog
- ViewModel
- OutlinedButton
- firebase
Archives
- Today
- Total
안드로이드 앱 개발
키보드가 올라올 때 하단 버튼 올리기 본문
1. Manifest에서 Activity에 속성을 추가로 정의해줘야한다.
<activity android:name=".ui.ActivityCreateCustomer"
android:windowSoftInputMode="adjustResize"/>
위 처럼 "adjustResize" 추가
2. activity.xml에서
버튼을 하단에 고정하면 된다.
<com.google.android.material.button.MaterialButton
android:id="@+id/completeBtn"
...
app:layout_constraintBottom_toBottomOf="parent" />
'안드로이드앱' 카테고리의 다른 글
Kotilin 코드로 R.string 받아서 사용하기 (0) | 2021.10.24 |
---|---|
다양한 기본 AlertDialog (0) | 2021.08.17 |
Repository Pattern (레포지터리 패턴) 데이터베이스에 접근하는 방법 (0) | 2021.07.16 |
안드로이드에서 고유한 id 값 생성하는 방법 (0) | 2021.07.13 |
Room Database에 기본형이 아닌 데이터 타입으로 저장하기 feat. TypeConverter (0) | 2021.07.10 |