Skip to content Skip to sidebar Skip to footer

Positionning The Spinning Wheel In A Custom Progress Dialog

I'm using the custom progress dialog given here, which as the style shown below. The spinning wheel is centered, and I can't find how to set a custom position to it. Anybody can he

Solution 1:

Use ProgressBar in your layout . You can place it any position you want in your screen.

<ProgressBar android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="?android:attr/progressBarStyle"              
                android:id="@+id/showProgress"/>

Post a Comment for "Positionning The Spinning Wheel In A Custom Progress Dialog"