com.facebook.shimmer.ShimmerFrameLayout Java Examples

The following examples show how to use com.facebook.shimmer.ShimmerFrameLayout. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ShimmerViewHolder.java    From CrazyDaily with Apache License 2.0 5 votes vote down vote up
public ShimmerViewHolder(View view) {
    super(view);
    if (view instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) view;
        shimmerView.setAutoStart(false);
    }
}
 
Example #2
Source File: ShimmerViewHolder.java    From CrazyDaily with Apache License 2.0 5 votes vote down vote up
public void startAnim() {
    if (itemView instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) itemView;
        if (!shimmerView.isAnimationStarted()) {
            shimmerView.postDelayed(shimmerView::startShimmerAnimation, 100);
        }
    }
}
 
Example #3
Source File: ShimmerViewHolder.java    From CrazyDaily with Apache License 2.0 5 votes vote down vote up
public void stopAnim() {
    if (itemView instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) itemView;
        if (shimmerView.isAnimationStarted()) {
            shimmerView.setAutoStart(false);
        }
    }
}
 
Example #4
Source File: ShimmerViewHolder.java    From MultiTypeRecyclerViewAdapter with Apache License 2.0 5 votes vote down vote up
public ShimmerViewHolder(View view) {
    super(view);
    if (view instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) view;
        shimmerView.stopShimmer();
    }
}
 
Example #5
Source File: ShimmerViewHolder.java    From MultiTypeRecyclerViewAdapter with Apache License 2.0 5 votes vote down vote up
public void startAnim() {
    if (itemView instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) itemView;
        if (!shimmerView.isShimmerStarted()) {
            shimmerView.postDelayed(new Runnable() {
                @Override
                public void run() {
                    shimmerView.startShimmer();
                }
            }, 100);

        }
    }
}
 
Example #6
Source File: ShimmerViewHolder.java    From MultiTypeRecyclerViewAdapter with Apache License 2.0 5 votes vote down vote up
public void stopAnim() {
    if (itemView instanceof ShimmerFrameLayout) {
        final ShimmerFrameLayout shimmerView = (ShimmerFrameLayout) itemView;
        if (shimmerView.isShimmerStarted()) {
            shimmerView.stopShimmer();
        }
    }
}