I played with the new android.support.design.widget.TabLayout and found a problem, there are no methods for changing the indicator color and default height in the class definition.
After some research, it turned out that the indicator color is taken from AppTheme by default. In particular, here:
<item name="colorAccent">#FF4081</item>
Now, in my case, if I change colorAccent , it will affect all other views that use this value as a background, like ProgressBar
Now is there a way to change the colorAccent indicator to something other than colorAccent ?
android material-design android-design-library
David_E Jun 17 '15 at 23:26 2015-06-17 23:26
source share