Answers for "alert dialog custom android"

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
4

alert dialog on android

new AlertDialog.Builder(this)
    .setTitle("Closing application")
    .setMessage("Are you sure you want to exit?")
    .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {

          }
     }).setNegativeButton("No", null).show();
Posted by: Guest on June-24-2021

Browse Popular Code Answers by Language