========= styles.xml ========= ========================== custom_progress_layout.xml ========================== ============================ custom_progress_drawable.xml ============================ ================= TestActivity.java ================= Dialog dialog = new Dialog(context, R.style.TransparentProgressDialog); dialog.setCancelable(false); dialog.setCanceledOnTouchOutside(false); dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE); dialog.setContentView(R.layout.custom_progress_layout); dialog.show(); /* ... ... */ dialog.dismiss();