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
- mvvm
- databinding
- 동영상
- node.js
- list
- 테스트 자동화
- Observable
- mysql
- android13
- MediaSession
- node
- MotionLayout
- Android 13
- Android
- Koin
- Animation
- google play
- Reactive
- rx
- junit
- PagingLib
- GCP
- 인앱결제
- SWIFTUI
- paging
- php
- MediaPlayer
- RxKotlin
- Kotlin
- SwiftUI Tutorial
Archives
- Today
- Total
목록dialog (1)
봄날은 갔다. 이제 그 정신으로 공부하자
Dialog 커스텀하기
이번 글에서는 android에서 기본으로 지원하는 AlertDialog를 활용하여 Dialog를 custom하는 방식에 대해 설명합니다. 저는 기본 AlertDialog가 좋은데 다른 사람들은 AlertDialog를 싫어하더라구요. ㅠ_ㅠ 일반 Dialog 만들기 android에서 지원하는 AlertDialog는 Builder(디자인 패턴의 Builder pattern 맞습니다.)를 지원하기 때문에 아래와 같이 간단히 dialog를 만드는 것이 가능합니다. 정말 심플하네요. AlertDialog.Builder(this) .setTitle("TITLE") .setMessage("MESSAGE") .setNegativeButton("NO", { dialogInterface: DialogInterface, i..
android Tip
2021. 1. 15. 11:01