我已经尝试了闪光帧FrameLayout的演示,但速度非常快,我想减慢这种效果的速度.如何减慢微光效果的速度以及如何使用这个库的属性?
解决方法:
您需要使用shimmer:duration =“1500”来设置ShimmerFrameLayout中的动画速度
试试这个
<com.facebook.shimmer.ShimmerFrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:shimmer="http://schemas.android.com/tools"
shimmer:duration="1500">
<View
android:layout_width="100dp"
android:layout_height="8dp"
android:background="#dddddd" />
</com.facebook.shimmer.ShimmerFrameLayout>