I am working on an android application where I am using DialogFragment to display the dialog but its width is very small. How I can make this width to fil
Create a custom style in your style.xml file. Just copy paste this code into your style.xml file
Then in the createDialog method of your DialogFragment, create the dialog object by the code
dialog = new Dialog(getActivity(), R.style.CustomDialog);
This is working for me and hope this will help you too