Cordova splash screen change spinner color on android

后端 未结 2 1257
-上瘾入骨i
-上瘾入骨i 2021-01-12 12:09

I found some solutions to change the color of the spinner on iOS:

How to show custom Splash Screen Spinner (i.e spinner with white color) in iOS phonegap app?

<
2条回答
  •  囚心锁ツ
    2021-01-12 13:06

    customspinner.xml

    
    
        
            
            
        
     
    

    Save in drawable folder.

    Then add this in your java code

    progressBar.setIndeterminateDrawable(R.drawable.customspinner);
                              or
    progressBar.setBackground(R.drawable.customspinner);
    

提交回复
热议问题