I want the display the progress dialog like activity indicator as like in iPhone, So I want to reduce the size of it.
Could any one give me a idea on this.
Play with 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"
/>
See this post, and example of progressbar created using code
Try this way:
mProgressDialog.setProgressStyle(android.R.attr.progressBarStyleSmall);