Question

i am using the chrisbanes / ActionBar-PullToRefresh from this link https://github.com/chrisbanes/ActionBar-PullToRefresh and i have created custom list-view and i wan to change the colour of pull to refresh bar and text colour on it as you can see in picture it is in black colour. please anyone guide me. ![enter image description here][1]

Was it helpful?

Solution

Change Progress Bar Color:
defaultHeaderTransformer.setProgressBarColor(getResources().getColor(R.color.accent_color));

Change Text Color:
<item name="ptrHeaderTitleTextAppearance">@style/TextAppearanceCustomPtrHeaderTitle</item>
<style name="TextAppearanceCustomPtrHeaderTitle" parent="android:TextAppearance.Large">
<item name="android:textSize">20dp</item>
<item name="android:textColor">@android:color/white</item>
</style>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top