Change progressbar color through CODE ONLY in Android

前端 未结 12 1811
北海茫月
北海茫月 2020-12-01 01:12

I have a progressBar using the ProgressBar class.

Just doing this:

progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizont         


        
12条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-01 01:43

    if you want to change color of progress bar programmatically then you copy past this code it is working 100%

     mainProgressBar.getIndeterminateDrawable().setColorFilter(Color.GREEN, PorterDuff.Mode.MULTIPLY);   
    

提交回复
热议问题