Android : What's the difference between circular Window progress and progress bar in android

on Tuesday, January 27, 2015


Is there a difference between the progress bar and the window progress in android ? How can I create a window progress because I tried that by the code below but I obtained an circular progress Bar not a window progress:



<ProgressBar
android:id="@+id/actionBar_progressIndicator"
android:layout_width="30dp"
android:layout_height="30dp"
android:visibility="visible"
android:indeterminateOnly="true"
android:layout_margin="5dp"
style="?android:progressBarStyleLarge"
android:isScrollContainer="true"
/>


this an example for a window progress:window progress


ps: I want to make it through xml way not by the java code


0 comments:

Post a Comment