progressDialog = new ProgressDialog(context): progressDialog.show(); TextView tv1 = (TextView) progressDialog.findViewById(android.R.id.message); tv1.setTextSize(20); tv1.setTypeface(yourCustomTF); tv1.setText("your msg");
Thus, you can change the text of the message, as well as customize the entire view, getting their components from the displayed ProgressDialog . Remember, you can get the view identifier using findViewById() after progressDialog.show (), because the view is created after show ().
source share