ShimmerLayout
介绍:
一个内存友好的shimmer加载效果。
运行效果:
使用说明:
依赖
compile 'io.supercharge:shimmerlayout:0.5.0'
xml
<io.supercharge.shimmerlayout.ShimmerLayout
android:id="@+id/shimmer_text"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="50dp"
android:paddingLeft="30dp"
android:paddingRight="30dp"
app:shimmer_animation_duration="1200">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="ShimmerLayout"
android:textColor="@color/shimmer_background_color"
android:textSize="26sp"/>
</io.supercharge.shimmerlayout.ShimmerLayout>
在代码中启动
ShimmerLayout shimmerText = (ShimmerLayout) findViewById(R.id.shimmer_text);
shimmerText.startShimmerAnimation();
已下载
0