I am using AlertDialog but android adds white space at the bottom of AlertDialog.
I found that the problem is happening when i use the
alertDialog.getWindow().setLayout(600, 400);
The creation of AlertDialog is done like :
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setView(layout);
alertDialog = builder.create();
alertDialog.show();
alertDialog.getWindow().setLayout(600, 400); //Controlling width and height.
I show the AlertDialog in a Fragment class and Fragment class belongs to AppCompatActivity.
How to remove this white space ?