Lahiru Prasanna
Lahiru Prasanna

Reputation: 1092

how to change the color which appear "end of scroll" in scroll views and list views

i want change this blue color.this color appear when we drag the scroll view.i don't even know android item name of this color.

enter image description here

<item name="android:colorEdgeEffect">

this does'not solve my problem.this requires api level 21 or above.but in this scenario my minSdkVersion is 14.

Upvotes: 3

Views: 3047

Answers (1)

Bhargav
Bhargav

Reputation: 8277

This color is the colorEdgeEffect of your theme, you can change that by creating your own theme and assigning to colorEdgeEffect like so.

colors.xml file

<color name="colorEdgeEffect">#FF4081</color>

styles.xml file

<style name="BaseAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorEdgeEffect">@color/colorEdgeEffect</item>
</style>

Upvotes: 3

Related Questions