I want to set the Progressbar Colour in My Application as Default progressbar colour is Slight White and My Application also has the White background so it cant be visible properly. So Please give me the Solution for it. Thanks.

link|improve this question

52% accept rate
1  
Please show us what you have tried so far. A bit of research should be performed by you initially. – Octavian Damiean Apr 13 '11 at 9:29
Duplicate of stackoverflow.com/questions/2020882/… – Kartik Apr 13 '11 at 9:33
feedback

3 Answers

@Chirag : I don't think that will be enough is it ? Your code will probably set a gradient at the background but the white spinner will still be here.

What I did to get my custom spinner working was to set a ProgressBar with a background drawable (image or shape). The ProgressBar animation is here called in Java.

<ProgressBar
     android:id="@+id/ProgressBar01" 
     android:layout_width="40px"
     android:layout_height="40px"
     style="?android:attr/progressBarStyle"
     android:indeterminateOnly="false"
     android:background ="@drawable/spinner_blue_76"
     />

splash_spinner.xml

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:pivotX="50%" 
    android:pivotY="50%" 
    android:fromDegrees="0"
    android:toDegrees="359"
    android:duration="1000"
    android:repeatMode="restart"
    android:repeatCount="infinite"
    android:interpolator="@android:anim/linear_interpolator">
</rotate>

LauncherActivity

    ...
    ProgressBar t = (ProgressBar) findViewById(R.id.ProgressBar01);
    t.startAnimation(AnimationUtils.loadAnimation(this,R.anim.splash_spinner));
    ...

spinner_blue_76 (or whatever)

enter image description here

It might not be the proper way either but it works well. (I have now a blue spinner on my grey background)

link|improve this answer
1  
i like the way you implement it... that is why i m giving vote to your answer. – Chirag Raval Apr 13 '11 at 10:33
i think if custom a progressBarStyle or use @Chirag method,the result more well – pengwang Apr 15 '11 at 5:45
feedback

Please make one xml file name progress.xml and put it in res/xml folder and write the below code in that xml file.

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0"
    android:toDegrees="360">
    <shape android:shape="ring" android:innerRadiusRatio="3"
        android:thicknessRatio="8" android:useLevel="false">

        <size android:width="76dip" android:height="76dip" />
        <gradient android:type="sweep" android:useLevel="false"
            android:startColor="#447a29" 
            android:endColor="#447a29"
            android:angle="0"
             />
    </shape>
</rotate> 

after creating this xml file set your progressbars background as this xml ..

Like

<ProgressBar
  android:id="@+id/ProgressBar01" 
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background = "@xml/progress">
link|improve this answer
1  
Thanks Budy. It helps me. – Androider Mahajan Apr 13 '11 at 11:02
feedback

Not the proper answer but still what i did was this : In order to get a black ProgressBar, use one of the inverse styles:

  <ProgressBar style="@android:style/Widget.ProgressBar.Inverse"/>
  <ProgressBar style="@android:style/Widget.ProgressBar.Large.Inverse"/>
  <ProgressBar style="@android:style/Widget.ProgressBar.Small.Inverse"/>

For this you have to your minimum android sdk requirement to level 4 (Android 1.6).

link|improve this answer
I got the Answer. . . . – Androider Mahajan Apr 13 '11 at 10:22
Ok. Please accept the answer that was most helpful to you. – Kartik Apr 13 '11 at 10:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.