Android dialog change button text color using style공부방/Android2019. 2. 19. 19:01
      Table of Contents
        안드로이드 style 이용해서 버튼 TextColor 변경 하는 방법
styles.xml
<style name="MyDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
    <item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item>
    <item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
</style>
<style name="NegativeButtonStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
    <item name="android:textColor">@android:color/holo_purple</item>
</style>
<style name="PositiveButtonStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
<item name="android:textColor">@android:color/holo_purple</item>
</style>
code.kt
private fun showDialog() {
    context?.let {
        val alert = AlertDialog.Builder(it, R.style.MyDialogTheme)
        alert.setTitle("제목")
        alert.setMessage("내용")
        alert.setPositiveButton("ok") { _, _ ->
        }
        alert.setNegativeButton("no") { _, _ -> }
        val dialog = alert.create()
        dialog.show()
    }
}after
참조 : https://stackoverflow.com/questions/27965662/how-can-i-change-default-dialog-button-text-color-in-android-5
반응형
    
    
    
  '공부방 > Android' 카테고리의 다른 글
| What is promotion graphic in android play store registration? (안드로이드 스토어 등록 정보 프로모션 그래픽 이란?) (0) | 2019.08.29 | 
|---|---|
| Android Studio Device File Explorer(안드로이드 기기 파일 탐색) (0) | 2019.08.27 | 
| Using Youtube API In Android (0) | 2019.02.11 | 
| Android Notification for Oreo (6) | 2018.12.13 | 
| 안드로이드 스튜디오 Oreo 앱 Install 안되는 현상 (0) | 2018.12.03 | 
@soycrab :: 꿀맛코딩
            행복한 코딩을 위하여!
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!
