How to change default color of progress bar?

后端 未结 14 1885
粉色の甜心
粉色の甜心 2020-12-02 15:53

I am using a circular ProgressBar in my Activty.My Problem is this it is not visible properly on my page because my page\'s BG color is same as ProgressBar .So

相关标签:
14条回答
  • 2020-12-02 16:19

    you also can change only the attribute

    android:indeterminateDrawable="@drawable/yourxmlfile"
    

    and keep this style

    style="@android:style/Widget.ProgressBar.Small"
    
    0 讨论(0)
  • 2020-12-02 16:21

    here is how you can do it by java code.

    progressBar.getProgressDrawable().setColorFilter(ContextCompat.getColor(getActivity(),R.color.product_status_color), PorterDuff.Mode.MULTIPLY)
    
    0 讨论(0)
提交回复
热议问题