pavani
pavani

Reputation: 41

stop shimmer is not working Facebook shimmer

For old version I am able to stop the shimmer, new version am not able to stop the shimmer,

Old Version Details

implementation 'com.facebook.shimmer:shimmer:0.1.0@aar'//using aar 
implementation 'com.facebook.shimmer:shimmer:0.1.0' //using jar
startshimmeranimation(),
stopShimmerAnimation()

New Version Details

implementation 'com.facebook.shimmer:shimmer:0.5.0@aar'
implementation 'com.facebook.shimmer:shimmer:0.5.0'
startShimmer()
stopShimmer() 

Note:latest version startshimmeranimation/stopshimmeranimation not there,
please help me get out this issue.

Thanks......

Upvotes: 0

Views: 1476

Answers (2)

Mudassar Ashraf
Mudassar Ashraf

Reputation: 972

runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    shimmer.stopShimmer();
                    shimmer.hideShimmer();
                }
            });

Upvotes: 0

null_override
null_override

Reputation: 463

Use shimmer.setVisibility(View.GONE); instead of stopShimmer() when finished.

Again, before starting shimmer call shimmer.setVisibility(View.VISIBLE); so that the shimmer is visible.

Upvotes: 1

Related Questions