I have been trying many commands to setup the size of my DialogFragment. It only contains a color-picker, so I have removed the background and title of the dial
DialogFragment
use this code for resize of Dialog Fragment android
public void onResume() { super.onResume(); Window window = getDialog().getWindow(); window.setLayout(250, 100); window.setGravity(Gravity.RIGHT); }