2

当我们尝试在列表视图(那里的许多项目)中拉到顶部(或末尾)时,出现了我真的想改变蓝色光泽(蓝色突出显示)的颜色。

因此,我想把这个颜色从蓝色变成橙色,伙计们。

http://img835.imageshack.us/img835/5609/28746577.jpg

p/s:

  • 我知道蓝色是默认的。(来自上面的 ICS)
  • 我添加图像来显示,黄色矩形是出现蓝色光芒(或蓝色高光)的位置
  • 在 Android 2.3.6(HTC 设备)上,默认颜色是橙色。我知道蓝色是默认颜色。(来自上面的 ICS)

谢谢,

4

2 回答 2

2

这是一个解决方法,对我有用:

http://evendanan.net/android/branding/2013/12/09/branding-edge-effect/

public static void brandGlowEffect(Context context, int brandColor) {

      //glow
      int glowDrawableId = context.getResources().getIdentifier("overscroll_glow", "drawable", "android");
      Drawable androidGlow = context.getResources().getDrawable(glowDrawableId);
      androidGlow.setColorFilter(brandColor, PorterDuff.Mode.SRC_IN);
      //edge
      int edgeDrawableId = context.getResources().getIdentifier("overscroll_edge", "drawable", "android");
      Drawable androidEdge = context.getResources().getDrawable(edgeDrawableId);
      androidEdge.setColorFilter(brandColor, PorterDuff.Mode.SRC_IN);
}

您必须在设置布局后立即在 OnCreate 调用此方法。

于 2014-02-15T16:11:48.003 回答
0

这是不可能的。你会在这里找到解释:

https://groups.google.com/forum/?fromgroups=#!topic/android-developers/i5a3uNN8jpg

public static void brandGlowEffect(Context context, int brandColor) {

      //glow
      int glowDrawableId = context.getResources().getIdentifier("overscroll_glow", "drawable", "android");
      Drawable androidGlow = context.getResources().getDrawable(glowDrawableId);
      androidGlow.setColorFilter(brandColor, PorterDuff.Mode.SRC_IN);
      //edge
      int edgeDrawableId = context.getResources().getIdentifier("overscroll_edge", "drawable", "android");
      Drawable androidEdge = context.getResources().getDrawable(edgeDrawableId);
      androidEdge.setColorFilter(brandColor, PorterDuff.Mode.SRC_IN);
}

您必须在 OnCreate 或 OnCreateView 调用它。

于 2013-04-24T06:20:08.163 回答