I need to make my custom dialog box as a transparent.
Sample Code :
Dialog dialog; @Override protected Dialog onCreateDialog(int id) { switch(id)
Try this,
layout.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
add the code above after this line.
View layout = inflater.inflate( R.layout.about_page, ( ViewGroup ) findViewById( R.id.about_Root ) );