5

我目前正在尝试更改到达滚动视图顶部或底部时出现的蓝色水平线的颜色。我试图在 Android res 文件夹中挖掘,但找不到任何明显的参考。

任何帮助将非常感激。

谢谢你。

更新:在尝试实现一个继承 ScrollView 的类并将 getSolidColor 设置为替代值之后,它似乎不起作用。当我到达滚动视图的底部或顶部时出现的水平条仍然是蓝色的。

更新2:实际上,我不应该提到边缘效果颜色,更具体地说是overScroll效果,但我不知道这个词。

4

7 回答 7

8

我找到了我的问题的部分答案,我实际上指的是 ScrollView 的 overscroll 属性。似乎可以使用以下代码禁用它:

<ScrollView
...
android:overScrollMode="never"
... />

但是,无法使用 overScrollHeader 和 overScrollFooter 属性修改颜色,因为它们的值会被忽略,而是显示默认的蓝色值。

于 2012-07-24T14:55:35.167 回答
5

您可以使用边缘效果覆盖库来动态覆盖滚动视图上发光边缘的颜色。它使用起来非常简单,可以为您的应用程序添加一些独特性。在这里找到它:https ://github.com/AndroidAlliance/EdgeEffectOverride

于 2013-08-24T11:08:03.397 回答
3

您可以通过一些反射来更改EdgeEffecta 的颜色:ScrollView

public static void setEdgeGlowColor(final ScrollView scrollView, final int color) {
    try {
        final Class<?> clazz = ScrollView.class;
        final Field fEdgeGlowTop = clazz.getDeclaredField("mEdgeGlowTop");
        final Field fEdgeGlowBottom = clazz.getDeclaredField("mEdgeGlowBottom");
        fEdgeGlowTop.setAccessible(true);
        fEdgeGlowBottom.setAccessible(true);
        setEdgeEffectColor((EdgeEffect) fEdgeGlowTop.get(scrollView), color);
        setEdgeEffectColor((EdgeEffect) fEdgeGlowBottom.get(scrollView), color);
    } catch (final Exception ignored) {
    }
}

@SuppressLint("NewApi")
public static void setEdgeEffectColor(final EdgeEffect edgeEffect, final int color) {
    try {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            edgeEffect.setColor(color);
            return;
        }
        final Field edgeField = EdgeEffect.class.getDeclaredField("mEdge");
        final Field glowField = EdgeEffect.class.getDeclaredField("mGlow");
        edgeField.setAccessible(true);
        glowField.setAccessible(true);
        final Drawable mEdge = (Drawable) edgeField.get(edgeEffect);
        final Drawable mGlow = (Drawable) glowField.get(edgeEffect);
        mEdge.setColorFilter(color, PorterDuff.Mode.SRC_IN);
        mGlow.setColorFilter(color, PorterDuff.Mode.SRC_IN);
        mEdge.setCallback(null); // free up any references
        mGlow.setCallback(null); // free up any references
    } catch (final Exception ignored) {
    }
}
于 2015-01-20T21:03:29.527 回答
2

我找到了一种非常简单(但很老套)的方法来实现这一点(改变发光的颜色):

int glowDrawableId = context.getResources().getIdentifier("overscroll_glow", "drawable", "android");
Drawable androidGlow = context.getResources().getDrawable(glowDrawableId);
androidGlow.setColorFilter(brandColor, PorterDuff.Mode.MULTIPLY);

我利用了发光效果实际上是一个 Drawable 的事实(并且没有改变),并在其上应用了一个过滤器。更多关于它,在这里:http ://evendanan.net/android/branding/2013/12/09/branding-edge-effect/

于 2013-12-09T19:09:29.800 回答
1

使用 api似乎没有一种简单的方法可以做到这一点。但是,您可以尝试扩展ScrollView和覆盖该getSolidColor()方法,将背景设置为不同的颜色:

    new ScrollView(this) {
        @Override
        @ExportedProperty(category = "drawing")
        public int getSolidColor() {
            // Set a background color to a color you want for the edges.
        }
    };
于 2012-07-22T19:25:11.393 回答
1

如果您希望褪色边缘和 ScrollView 的背景颜色相同,您可以添加:

<ScrollView
...
android:background="@color/yourColor"
... />

如果您希望边缘颜色不同,则必须扩展 ScrollView 并覆盖该getSolidColor()方法。

于 2012-07-22T19:35:29.570 回答
0

这是更改过度滚动边缘线的方式:

        final int edgeDrawableId = res.getIdentifier("overscroll_edge", "drawable", "android");
        final Drawable overscrollEdge = res.getDrawable(edgeDrawableId);
        overscrollEdge.setColorFilter(res.getColor(colorID), android.graphics.PorterDuff.Mode.SRC_ATOP);
于 2015-03-25T14:27:25.073 回答