- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Android 项目,我正在使用 following approach 更改我的一个 View 中出现的波纹效果的颜色。
虽然它可以工作,但我确实需要根据我的风格将此颜色重置回默认值。下面我将展示我的样式文件,我希望有一种方法可以将 RippleDrawable 设置回它的默认颜色。
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="editTextColor">@android:color/white</item>
<item name="font">@font/roboto_regular</item>
<item name="colorControlNormal">@android:color/white</item>
<item name="android:scrollbarThumbVertical">@drawable/nice_scrollbar</item>
<item name="android:textColor">@color/darkGrey</item>
<item name="android:editTextColor">@android:color/black</item>
<item name="android:textColorHighlight">@color/colorPrimary</item>
<item name="android:colorBackground">@color/darkerWhite</item>
<item name="android:windowBackground">@color/darkerWhite</item>
<item name="windowNoTitle">true</item>
<item name="android:windowNoTitle">true</item>
</style>
可以注意到,我正在使用 MaterialComponents。
下面你会发现我正在使用的当前方法来改变颜色,并在给定的 x/y 上强制对 View 产生涟漪效应:
private void forceRippleAnimation(View view, int x, int y) {
Drawable background = view.getBackground();
if (Build.VERSION.SDK_INT >= 21 && background instanceof RippleDrawable) {
RippleDrawable rippleDrawable = (RippleDrawable) background;
rippleDrawable.setHotspot(x, y);
rippleDrawable.setColor(new ColorStateList(
new int[][]{
new int[]{}
},
new int[]{
getContext().getResources().getColor(R.color.rippleColor)
}
));
rippleDrawable.setState(new int[]{android.R.attr.state_pressed, android.R.attr.state_enabled});
Handler handler = new Handler();
handler.postDelayed(new Runnable(){
@Override public void run(){
rippleDrawable.setState(view.getDrawableState());
}
}, 650);
}
}
最佳答案
与其尝试反转对原始背景 RippleDrawable
所做的更改,您可以保留它并将更改应用于副本:
让 Activity
有两个 Drawable
字段:
private RippleDrawable customRippleDrawable;
private RippleDrawable backgroundFromXml;
创建给定背景的副本并将其设置为新背景:
Drawable background = view.getBackground();
if (Build.VERSION.SDK_INT >= 21 && background instanceof RippleDrawable) {
backgroundFromXml = (RippleDrawable) background;
customRippleDrawable = (RippleDrawable) background.getConstantState().newDrawable().mutate();
customRippleDrawable.setHotspot(x, y);
customRippleDrawable.setColor(new ColorStateList(
new int[][]{
new int[]{}
},
new int[]{
MainActivity.this.getResources().getColor(R.color.rippleColor)
}
));
customRippleDrawable.setState(new int[]{android.R.attr.state_pressed, android.R.attr.state_enabled});
view.setBackground(customRippleDrawable);
}
由于 backgroundFromXml 是一个字段,您可以稍后访问它以将背景重置为其原始值:
view.setBackground(backgroundFromXml);
mutate()
做什么?
从一个可绘制对象资源生成的所有可绘制对象
共享一个公共(public)状态。这有助于节省资源(例如内存),从而提高 Android 应用程序的性能。
通常,如果您将 ColorFilter
应用到从特定可绘制资源生成的 Drawable
上,您会在应用程序的任何地方注意到该特定可绘制资源的效果用来。
在 Drawable
上调用 mutate()
告诉运行时这个 Drawable
应该有自己的状态。如果您之后应用任何更改,其他 Drawable 将保持不变。
另见 documentation在 mutate()
关于java - 将 RippleEffect Color 更改回其 Styled 原始值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54428057/
我是一名优秀的程序员,十分优秀!