我有一个白色背景的 Android 滚动视图。褪色边缘是白色半透明渐变。我想把它改成黑色而不是白色。我在同一个项目中有一个 ListView,其背景为白色,默认情况下具有黑色褪色边缘,但我找不到设置的位置(如果有的话)。
7 回答
如果您想要与背景不同的褪色边缘,则必须覆盖 ScrollView 的 getSolidColor() 方法。例如:
@Override
public int getSolidColor() {
return Color.rgb(0x30, 0x30, 0x30);
}
只是通过反复试验才发现的。
只需设置android:background="@color/yourColor"
为<ScrollView>
. 它将阴影设置为给定的颜色。
您可以使用:
final int glowDrawableId = context.getResources().getIdentifier("overscroll_glow",
"drawable", "android");
final Drawable androidGlow = context.getResources().getDrawable(glowDrawableId);
androidGlow.setColorFilter(Color.RED, PorterDuff.Mode.SRC_IN);
int edgeDrawableId = context.getResources().getIdentifier("overscroll_edge", "drawable",
"android");
final Drawable androidEdge = context.getResources().getDrawable(edgeDrawableId);
androidEdge.setColorFilter(Color.RED, PorterDuff.Mode.SRC_IN);
编辑:这不能回答问题,这是要求ScrollView
. 此答案仅适用于AbsListView
后代(包括ListView
)。
褪色边缘颜色由android:cacheColorHint
属性控制。
例如:
<ScrollView android:cacheColorHint="#ff000000" android:background="#ffffffff" />
将背景设置为白色,并cacheColorHint
用于绘制褪色边缘颜色——在这种情况下,它将是黑色。
如果您不知道是什么改变了褪色边缘的颜色,那可能是样式或主题的应用。android:theme="something"
在 Activity 中检查清单。如果主题来自组android.R.style.Theme.Light
,则边缘将为白色。默认值将android.R.style.Theme
有android.R.style.Theme.Black
黑色褪色边缘。主题也会影响其他属性,因此在将它们投入其中之前,请先全面检查这些属性。
做这个:
<ScrollView
android:theme="@style/scrollUpdate"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
在 values\styles 中放置样式
<style name="scrollUpdate">
<item name="colorAccent">@color/yourcolor</item>
<item name="android:color">@color/yourcolor</item>
<item name="colorPrimary">@color/yourcolor</item>
<item name="colorPrimaryDark">@color/yourcolor</item>
</style>
对我有用!