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
- Android
- firebase
- 안드로이드
- textview
- 안드로이드 스튜디오
- Dialog
- 팝업액티비티
- ButtonWithButton
- Activity
- EditText
- firebasefunctions
- androidstudio
- 뷰바인딩
- 랜덤ID
- OutlinedButton
- 밑줄
- FRAGMENT
- ArrayList
- 안드로이드스튜디오
- BottomSheetDialog
- MaterialButton
- button
- RealtimeDB
- Imageview
- lifecyclescope
- ROOM
- nav_graph
- ViewModel
- Kotlin
- 코틀린
Archives
- Today
- Total
목록Expandable (1)
안드로이드 앱 개발
Expandable Cardview (카드뷰 접었다가 펴는 기능) - Kotlin
먼저, xml에서 default로 보여지는 애들과 숨겨져 있는 애들을 구분한다. 2. 다음 코드에서 클릭 이벤트 처리 binding.fixedLayout.setOnClickListener { if (binding.hidenView.visibility == View.VISIBLE){ TransitionManager.beginDelayedTransition(binding.cardview, AutoTransition()) binding.hidenView.visibility = View.GONE binding.historyExpandIv.setImageResource(R.drawable.arrow_down_float) } else{ TransitionManager.beginDelayedTransition(bin..
카테고리 없음
2021. 5. 11. 01:38