I need to make my custom dialog box as a transparent.
Sample Code :
Dialog dialog; @Override protected Dialog onCreateDialog(int id) { switch(id)
If you are on API >= 11, you can try to set a theme to your Dialog like that :
new AlertDialog.Builder(mContext , android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
Or you can try to set the background transparent :
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));