对于老版本我可以停止闪光,新版本不能停止闪光,
旧版本详情
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......
发布于 2021-10-11 21:43:39
完成后使用shimmer.setVisibility(View.GONE);
而不是stopShimmer()
。
同样,在启动shimmer之前调用shimmer.setVisibility(View.VISIBLE);
,这样就可以看到shimmer了。
https://stackoverflow.com/questions/69526543
复制相似问题