250x250
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 |
Tags
- Flutter
- Compose
- Navigation
- LifeCycle
- tabbar
- 계측
- textview
- viewmodel
- intent
- 앱
- DART
- 안드로이드
- Kotlin
- drift
- appbar
- textfield
- ScrollView
- Dialog
- 테스트
- livedata
- android
- binding
- Coroutines
- scroll
- CustomScrollView
- activity
- data
- Button
- TEST
- 앱바
Archives
- Today
- Total
Study Record
[안드로이드] Dialog 정리 본문
728x90
😶 MaterialAlterDialogBuilder
private fun showMaterialAlterDialog() {
MaterialAlertDialogBuilder(context)
.setTitle(resources.getString(R.string.title))
.setMessage(resources.getString(R.string.supporting_text))
.setNeutralButton(resources.getString(R.string.cancel)) { dialog, which ->
// Respond to neutral button press
}
.setNegativeButton(resources.getString(R.string.decline)) { dialog, which ->
// Respond to negative button press
}
.setPositiveButton(resources.getString(R.string.accept)) { dialog, which ->
// Respond to positive button press
}
.show()
}
728x90
'안드로이드' 카테고리의 다른 글
[안드로이드] navigation 참고사항 (0) | 2023.08.01 |
---|---|
[안드로이드] ViewModel 과 LiveData & Data Binding (0) | 2023.07.28 |
[안드로이드] 메뉴 만들기 (0) | 2023.07.20 |
[안드로이드] Activity 시작하기 (0) | 2023.07.20 |
[안드로이드] 계측 테스트 참고 (0) | 2023.07.18 |