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
- 안드로이드 스튜디오
- ViewModel
- 밑줄
- MaterialButton
- BottomSheetDialog
- nav_graph
- EditText
- Kotlin
- firebasefunctions
- textview
- 랜덤ID
- ButtonWithButton
- OutlinedButton
- 안드로이드
- button
- firebase
- Android
- ArrayList
- RealtimeDB
- androidstudio
- lifecyclescope
- Dialog
- FRAGMENT
- 코틀린
- Activity
- 팝업액티비티
- 안드로이드스튜디오
- 뷰바인딩
- Imageview
- ROOM
Archives
- Today
- Total
목록안드로이드 (63)
안드로이드 앱 개발
그림자 높이 컨트롤 or 없애기
//FloatingActionButton의 xml에서 아래와 같은 속성으로 그림자를 컨트롤 할 수 있다. app:elevation="1dp" 0dp를 할 경우 그림자 제거
안드로이드앱/FloatingActionButton, FAB
2021. 3. 13. 17:17
키보드 관련_Edittext
해당 화면을 띄웠을 때, 자동으로 포커스를 주고 키보드를 띄우는 java code editText.requestFocus(); //focus 주기 // 키보드 띄우기 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY); 반대로 키보드 내리는 java code InputMethodManager immhide = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE)..
안드로이드앱/EditText
2021. 3. 13. 16:27