일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코틀린
- 안드로이드스튜디오
- EditText
- Kotlin
- FRAGMENT
- OutlinedButton
- 뷰바인딩
- ArrayList
- firebase
- 안드로이드
- Imageview
- Android
- androidstudio
- 밑줄
- Dialog
- ROOM
- BottomSheetDialog
- firebasefunctions
- RealtimeDB
- button
- textview
- 랜덤ID
- Activity
- lifecyclescope
- ViewModel
- MaterialButton
- ButtonWithButton
- nav_graph
- 팝업액티비티
- 안드로이드 스튜디오
- Today
- Total
목록코틀린 (3)
안드로이드 앱 개발
1. bottomSheetDialog xml 파일을 만든다. 2. bottomSheetFragment를 아래와 같이 만든다. class BottomSheetFragmentCustomer : BottomSheetDialogFragment() { private val mContext: Context? = context override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View? { // Inflate the layout for this fragment val view = inflater.inflate(R.layout.custom_bottomsheet_addcus, co..
//1. 일반적인 형태의 반복문 for (index in 1..5) { //for문 index 1로 시작해서 5까지 끝남 } //2. until : 마지막 숫자 제외하기 for(변수 in 시작값 untill 종료값) { //실행코드 } //예제 var array = arrayOf("Jan", "Feb", "Mar") for (index in 0 until array.size) { Log.d } //3. step:건너뛰기, 만약 3의 배수만 뽑고 싶다면 for (index in 0 until 100 step 3) { Log } //4. downTo:감소시키기 for (index in 0 downTon 10){ Log.d } //5. 배열or 컬렌션에 들어있는 요소만큼 반복하기 var arrayMonth =..
전역 변수에 var fragmentTransaction = fragmentManager.beginTransaction() 선언을 하고 commit()을 한 후에 다시 transaction을 생성해줘야 한다고 한다. example fragmentTransaction.add(R.id.frame_container, fragmentCustomers).commit() fragmentTransaction = fragmentManager.beginTransaction() fragmentTransaction.add(R.id.frame_container, fragmentHome).commit() fragmentTransaction = fragmentManager.beginTransaction() fragmentTrans..