Generate skeleton screens in an Android app.
Note: This is a fork of ericktijerou/koleton.
The library was forked at: v1.0.0-beta01
An Android library that provides an easy way to show skeleton of any view.
dependencies {
implementation "com.github.OCAndroid:skeletor:${skeletor_version}"
}
To load the skeleton of a View
, use the loadSkeleton
extension function:
// ConstraintLayout
constraintLayout.loadSkeleton()
// TextView
textView?.loadSkeleton(length = 20)
// RecyclerView
recyclerView.loadSkeleton(R.layout.item_example)
Skeletons can be configured with an optional trailing lambda:
// ConstraintLayout
constraintLayout.loadSkeleton {
color(R.color.colorSkeleton)
cornerRadius(radiusInPixel)
shimmer(false)
lineSpacing(spacingInPixel)
}
// TextView
textView?.loadSkeleton(length = 20) {
color(R.color.colorSkeleton)
...
}
// RecyclerView
recyclerView.loadSkeleton(R.layout.item_example) {
itemCount(3)
...
}
To hide the skeleton, use the hideSkeleton
extension function:
view.hideSkeleton()
Skeletor will lazily create a SkeletonLoader
with the default values.
If you want to set the default values, you can set a default SkeletonLoader
instance by either:
// In your Application
class MyApplication : Application(), SkeletonLoaderFactory {
override fun newSkeletonLoader(): SkeletonLoader {
return SkeletonLoader.Builder(this)
...
.color(R.color.colorSkeleton)
.cornerRadius(radiusInPixel)
.build()
}
}
Or calling Skeletor.setSkeletonLoader
val skeletonLoader = SkeletonLoader.Builder(context)
...
.color(R.color.colorSkeleton)
.cornerRadius(radiusInPixel)
.build()
Skeletor.setSkeletonLoader(skeletonLoader)
The default SkeletonLoader
can be retrieved like so:
val skeletonLoader = Skeletor.skeletonLoader(context)
Skeletor works well with Paging
library with the help of SkeletorView
.
If you want to show a skeleton when you scroll to the bottom of your list, use the generateSkeleton
extension function:
// In your PagedListAdapter
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.item_sample, parent, false)
return when (viewType) {
...
TYPE_SKELETON -> SkeletonViewHolder(view.generateSkeleton())
...
}
}
...
class SkeletonViewHolder(val skeletorView: SkeletorView) : RecyclerView.ViewHolder(skeletorView) {
fun showSkeleton() {
skeletorView.showSkeleton()
}
}
Skeletor works with Facebook’s shimmer library. If you want to create a custom shimmer effect, you need to include in your dependencies:
// In your module's `build.gradle.kts`
dependencies {
implementation("com.facebook.shimmer:shimmer:0.5.0")
}
And set the custom shimmer in the lambda expression:
constraintLayout.loadSkeleton {
val customShimmer = Shimmer.AlphaHighlightBuilder()
.setDirection(Shimmer.Direction.TOP_TO_BOTTOM)
...
.build()
shimmer(customShimmer)
}
You can find more information about Facebook's shimmer effect on the shimmer-android page.
Constributions are welcomed, however please see if the original project at https://github.com/ericktijerou/koleton to see if fits your needs. At the time of this writing(09/2021), this fork is almost identical to the original.
Copyright 2020-2021 ericktijerou, Bladymir Tellez<[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.