Answers for "android custom AlertDialog theme"

3

android custom AlertDialog theme

val builder: AlertDialog.Builder = AlertDialog.Builder(ContextThemeWrapper(this, R.style.AlertDialogTheme))
        
<!-- AlertDialog Style-->
<style name="AlertDialogTheme">
  <item name="android:background">@drawable/dialog_background</item>
</style>
Posted by: Guest on February-22-2021

Code answers related to "android custom AlertDialog theme"

Browse Popular Code Answers by Language