I want to create a custom dialog box like below
I have tried the foll
Add the below theme in values -> style.xml
Use this theme in your onCreateDialog
method like this:
Dialog dialog = new Dialog(FlightBookActivity.this,R.style.Theme_Dialog);
Define your dialog layout including title bar in the xml file and set that xml file like this:
dialog.setContentView(R.layout.your_dialog_layout);