I tried to show an indefinite circle of activity, like this one:

Here's the layout code:
<ProgressBar android:id="@+id/progress" style="@style/GenericProgressIndicator" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="center_vertical|center_horizontal" android:visibility="gone" />
Here's the style code:
<style name="GenericProgressIndicator" parent="@android:style/Widget.ProgressBar.Large"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:indeterminate">true</item> </style>
My circle is not like the Holo circle that you see in the Gmail app or the Play app. What am I doing wrong? How can I get a nice circular activity circle Olo?
java android android-progressbar
Mridang Agarwalla Sep 07 '12 at 10:32 2012-09-07 10:32
source share