涟漪可绘制 - 以编程方式显示涟
2022-09-04 19:52:04
我有这样的观点
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:background="@drawable/ripple"
android:layout_centerVertical="true"
android:layout_alignParentStart="true" />
和涟漪.xml作为
<?xml version="1.0" encoding="utf-8"?>
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight" >
<item android:id="@android:id/mask"
android:drawable="@android:color/white" />
</ripple>
一切都很棒。当我触摸视图时,它会给我带来涟漪效应。我正在寻找的是重复地从代码中开始在视图上启动波纹动画。将其显示为不确定的进度。所以海浪不断涟漪。
类似的东西
Runnable runnable = new Runnable() {
@Override
public void run() {
RippleDrawable drawable = (RippleDrawable) button.getBackground();
drawable.showRipples(true, true); // <-- This is needed
handler.postDelayed(runnable, 500);
}
};
如何做到这一点?