How to reduce Progressdialog size in Android?

I want the progress indicator to show an activity indicator, like on the iPhone, so I want to reduce its size.

Can anyone give me an idea about this.

Thanks.

+4
source share
2 answers

Playback using android progressBar style

<ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" style="?android:attr/progressBarStyleSmall" <-- play with this android:layout_gravity="center" /> 

EDIT:

See this post and an example of progress made using code.

+5
source

Try as follows:

 mProgressDialog.setProgressStyle(android.R.attr.progressBarStyleSmall); 
+2
source

All Articles