I want to create a custom dialog box like below
I have tried the foll
Simplest way to change the background color and text style is to make custom theme for android alert dialog as below :-
: Just put below code to styles.xml :
: Now customization thing is done , now just apply to your alertBuilder object :
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this,R.style.AlertDialogCustom);
Hope , this will help you !