【开源】Shimmer-android

Shimmer-android

 

使用说明:

可以使用reflectionColor属性改变闪烁颜色

1
2
3
4
5
6
7
<com.romainpiel.shimmer.ShimmerTextView    android:id="@+id/shimmer_tv"
    android:text="@string/shimmer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#444"
    android:textSize="50sp"
    app:reflectionColor="#f00"/>

自定义动画

1
2
3
4
5
// DON'T COPY THIS CODE TO YOUR PROJECT! It is just an exampleshimmer.setRepeatCount(0)
    .setDuration(500)
    .setStartDelay(300)
    .setDirection(Shimmer.ANIMATION_DIRECTION_RTL)
    .setAnimatorListener(new Animator.AnimatorListener(){});

 

posted on 2015-04-09 09:39  wasdchenhao  阅读(141)  评论(0编辑  收藏  举报

导航