SkeletonLayout icon indicating copy to clipboard operation
SkeletonLayout copied to clipboard

Skeleton view pattern for Android

Results 23 SkeletonLayout issues
Sort by recently updated
recently updated
newest added

I have one imageview full width and height and on top of it we have text, and one view, so when we applySkeleton then imageview is full width height so...

question

Why this is happen? ![Screen Shot 2020-08-18 at 12 02 39 PM](https://user-images.githubusercontent.com/28893080/90472436-b80e5d00-e14a-11ea-9971-005df3235623.png)

question

I noticed that depending on colors chosen and time spent waiting, showOriginal() can be quite jarring. Thoughts on how hard or easy it would be to add a fade in...

enhancement

In our real app usage, we would like not to supply the skeleton item size in RecyclerView.applySkeleton, we want it automatically calculated, so I create this simple PR, please check,...

bug

if I build in [EpoxyController](https://github.com/airbnb/epoxy/wiki/Epoxy-Controller) my model it doesn't render skeleton ``` rowItem { id(item.key) onBind { _, view, _ -> val view = view.dataBinding.root val tag = view.tag if(tag...

bug
help wanted

showOriginal() and showSkeleton() do not respect the original visibility of the masked views. The original visibility should be cached in order to return to the original state on calling showOriginal().

bug

showSkeleton() and showOriginal() could feature an additional parameter to support a delay before toggling the Skeleton. The use case for this was delivered by [KennyGoers](https://github.com/Faltenreich/SkeletonLayout/issues/9#issuecomment-492247604): "When I call skeleton view...

enhancement

I added the dependencies in build.gradle file, But xml not recognizing the view.

### Title: Cannot use `skeletonlayout-5.0.0` due to Java version incompatibility ### Description: **Issue:** I am trying to integrate `skeletonlayout-5.0.0` into my Android project. However, during the build process, I encountered...

is there something wrong with the following script? because the original data does not appear ``` private fun getData() { newsViewModel.getNewsList().observe(viewLifecycleOwner) { when (it) { is Response.Loading -> skeleton?.showSkeleton() is...