Last active
June 27, 2021 19:24
-
-
Save kirich1409/fefcebaa29a443fd9bee5d266ec737a1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FragmentViewBindingProperty<T : ViewBinding>( | |
private val viewBinder: ViewBinder<T> | |
) : ReadOnlyProperty<Fragment, T> { | |
private var viewBinding: T? = null | |
private val lifecycleObserver = BindingLifecycleObserver() | |
@MainThread | |
override fun getValue(thisRef: Fragment, property: KProperty<*>): T { | |
checkIsMainThread() | |
this.viewBinding?.let { return it } | |
val view = thisRef.requireView() | |
thisRef.viewLifecycleOwner.lifecycle.addObserver(lifecycleObserver) | |
return viewBinder.bind(view).also { vb -> this.viewBinding = vb } | |
} | |
private inner class BindingLifecycleObserver : DefaultLifecycleObserver { | |
private val mainHandler = Handler(Looper.getMainLooper()) | |
@MainThread | |
override fun onDestroy(owner: LifecycleOwner) { | |
owner.lifecycle.removeObserver(this) | |
viewBinding = null | |
} | |
} | |
} | |
/** | |
* Create new [ViewBinding] associated with the [Fragment][this] | |
*/ | |
@Suppress("unused") | |
inline fun <reified T : ViewBinding> Fragment.viewBinding(): ReadOnlyProperty<Fragment, T> { | |
return FragmentViewBindingProperty(DefaultViewBinder(T::class.java)) | |
} |
Create issue with sample project where the issue is reproducible
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you re-edit with import sytnx ? because i have Unresolved reference: ViewBinder and Unresolved reference: checkIsMainThread
in my gradle has set buildFeatures {
dataBinding true
viewBinding true
}