显示内容前的Android预览

时间:2018-09-25 08:14:28

标签: android

在Yelp中预览的示例照片:

enter image description here

当我使用某些Android或IOS应用程序或Web时,有时可以在内容加载之前看到其预览。我的意思是列表视图的灰色部分有时会产生连锁反应。我认为许多应用程序都在类似地使用该功能,所以我想知道该预览功能是否有一些内置的或第三方的Android库。或者,它是由自己的代码开发的。如果是自己的代码,那么如何实现这种预览?

2 个答案:

答案 0 :(得分:1)

这是最初由Facebook开发的Shimmer

iOS:https://github.com/facebook/Shimmer

android:https://github.com/facebook/shimmer-android

Here是iOS列表中如何使用它的帖子

答案 1 :(得分:0)

这是一些库。

  1. https://github.com/elye/loaderviewlibrary

  2. https://github.com/ethanhua/Skeleton

您需要将布局元素转换为加载器元素。像下面一样

<com.elyeproj.loaderviewlibrary.LoaderTextView
     android:layout_width="match_parent"
     android:layout_height="wrap_content" />

<com.elyeproj.loaderviewlibrary.LoaderImageView
     android:layout_width="100dp"
     android:layout_height="100dp" />