4

How can I design a custom alert dialog with rounded corners and a transparent dismiss button?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Braj Bhushan Singh
  • 607
  • 1
  • 10
  • 23

5 Answers5

33

Create your dialog like this:

AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
                                            context, R.style.CustomAlertDialog);
AlertDialog alertDialog = alertDialogBuilder.create();

In your styles.xml file:

<style name="CustomAlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
    <item name="android:windowBackground">@drawable/popup_background</item>
</style>

In file popup_background.xml, write whatever corner radius you want:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#FFFFFF" />
    <corners android:radius="6dp" />
</shape>

You can change the corner radius.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Belzebub
  • 944
  • 1
  • 9
  • 20
  • if I want to use gradient, how will I accomplish it sir? – Lidor Eliyahu Shelef May 18 '20 at 13:54
  • 1
    https://stackoverflow.com/questions/13929877/how-to-make-gradient-background-in-android The answer to this question should help you, change the popup_background into a gradient shape. – Belzebub May 19 '20 at 18:14
  • This one pretty good solution but one issue I face dialog width changed as compare to original alert dialog. you have any solution for same. – Kishan Donga Jun 09 '20 at 11:09
16

You can use the Material components for Android library and the androidx.appcompat.app.AlertDialog.

Just use something like:

new MaterialAlertDialogBuilder(context)
            .setTitle("Dialog")
            .setMessage("Lorem ipsum dolor ....")
            .setPositiveButton("Ok", /* listener = */ null)
            .setNegativeButton("Cancel", /* listener = */ null)
            .show();

Using a Material Components Theme you can customize the shape of your component with the shapeAppearanceOverlay attribute in your style.

Something like:

  <!-- Alert Dialog -->
  <style name="MyThemeOverlayAlertDialog" parent="@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog">
    <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MyApp.Dialog.Rounded</item>
  </style>

Here you can define the rounded corners:

  <style name="ShapeAppearanceOverlay.MyApp.Dialog.Rounded" parent="">
    <item name="cornerFamily">rounded</item>
    <item name="cornerSize">8dp</item>
  </style>

enter image description here

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
0

You can create your customview by extending the alert dialog class.

But I would recommend a PopupWindow or a subview that you show with an animation when a specific action performed.

Or you can make an activity with a transparent background by adding this attribute to your Manifest.xml file:

  android:theme="@android:style/Theme.Translucent"
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
zMabrook
  • 932
  • 7
  • 9
0

Try this. It worked for me like a charm.

I am working on sdkversion 28 with a minimum SDK version 19.

dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Aashis Shrestha
  • 342
  • 5
  • 13
-2

Try it...

 final Dialog dialog = new Dialog(context);

 // Include the dialog.xml file
 dialog.setContentView(R.layout.your_custom_layout);

 // Set the dialog title
 //dialog.setTitle("Custom Dialog");

 // Set values for custom dialog components - 
 // text, image and button
 final EditText name = (EditText) dialog.findViewById(R.id.name_edit);

 dialog.show();

 /
 Button editButton = (Button) dialog.findViewById(R.id.editbtn);

 // If the decline button is clicked, close the custom dialog
 editButton.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
         // Close dialog

         dialog.dismiss();
     }
 });

 final Button cancenbtn = (Button) dialog.findViewById(R.id.cancelbtn);

 // If the decline button is clicked, close the custom dialog
 cancelnbtn.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
         // Close dialog

         dialog.dismiss();
     }
 });
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
A.Arjun
  • 105
  • 3