alaegin / ViewBindingPropertyDelegate

Make work with Android View Binding simpler

Home Page:https://proandroiddev.com/make-android-view-binding-great-with-kotlin-b71dd9c87719

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ViewBindingPropertyDelegate

Make work with Android View Binding simpler

IMPORTANT: Enable ViewBinding before use the library

Every Gradle module of your project need to enable ViewBinding. How to do that you can find in the official guide

Add library to a project

allprojects {
  repositories {
    jcenter()
  }
}

dependencies {
    implementation 'com.kirich1409.viewbindingpropertydelegate:viewbindingpropertydelegate:1.2.0'
    
    // To use only without refacltion variants of viewBinding
    implementation 'com.kirich1409.viewbindingpropertydelegate:vbpd-noreflection:1.2.0'
}

Samples

class ProfileFragment : Fragment(R.layout.profile) {

    // Using reflection API under the hood
    private val viewBinding: ProfileBinding by viewBinding()

    // Without reflection
    private val viewBinding by viewBinding(ProfileBinding::bind)
}
class ProfileActivity : AppCompatActivity(R.layout.profile) {

    // Using reflection API under the hood
    private val viewBinding: ProfileBinding by viewBinding(R.id.container)

    // Without reflection
    private val viewBinding by viewBinding(ProfileBinding::bind, R.id.container)
}

It's very important that for some cases in DialogFragment you need to use dialogViewBinding instead of viewBinding

class ProfileDialogFragment : DialogFragment() {

    // Using reflection API under the hood
    private val viewBinding: ProfileBinding by dialogViewBinding(R.id.container)

    // Without reflection
    private val viewBinding by dialogViewBinding(ProfileBinding::bind, R.id.container)

    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
        return AlertDialog.Builder(requireContext())
            .setView(R.layout.profile)
            .create()
    }
}
class ProfileDialogFragment : DialogFragment() {

    // Using reflection API under the hood
    private val viewBinding: ProfileBinding by viewBinding()

    // Without reflection
    private val viewBinding by viewBinding(ProfileBinding::bind)

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        return inflater.inflate(R.layout.profile, container, false)
    }
}

About

Make work with Android View Binding simpler

https://proandroiddev.com/make-android-view-binding-great-with-kotlin-b71dd9c87719

License:Apache License 2.0


Languages

Language:Kotlin 100.0%