shimmer使用方法(文本闪烁)

Posted 一路向北

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shimmer使用方法(文本闪烁)相关的知识,希望对你有一定的参考价值。

1.github下载  https://github.com/facebook/shimmer-android

2.copy ShimmerFrameLayout.java 连同包名到java目录

3.copy attrs.xml 到 values 目录

4.

<com.facebook.shimmer.ShimmerFrameLayout
        android:id="@+id/shimmer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hello World!Hello World!Hello World!Hello World!Hello World!" />
</com.facebook.shimmer.ShimmerFrameLayout>

5.

ShimmerFrameLayout shimmar = (ShimmerFrameLayout) findViewById(R.id.shimmer);
shimmar.startShimmerAnimation();

注:各种style

        mShimmerViewContainer.setDuration(5000);
        mShimmerViewContainer.setRepeatMode(ObjectAnimator.REVERSE);

        mShimmerViewContainer.setBaseAlpha(0.1f);
        mShimmerViewContainer.setDropoff(0.1f);
        mShimmerViewContainer.setTilt(0);

        mShimmerViewContainer.setAngle(ShimmerFrameLayout.MaskAngle.CW_90);

        mShimmerViewContainer.setBaseAlpha(0);
        mShimmerViewContainer.setDuration(2000);
        mShimmerViewContainer.setDropoff(0.1f);
        mShimmerViewContainer.setIntensity(0.35f);
        mShimmerViewContainer.setMaskShape(ShimmerFrameLayout.MaskShape.RADIAL);

 

 

 

  

以上是关于shimmer使用方法(文本闪烁)的主要内容,如果未能解决你的问题,请参考以下文章

覆盖javascript以消除闪烁

片段内的VideoView导致黑屏闪烁

sh HBA和驱动器固件闪烁片段

更新期间停止文本框闪烁

如何在 bootgrid 表的最新记录中闪烁文本?

android,在先做了popStack之后,如何避免用FragmentTransaction替换片段时出现闪烁