/ViewBindingPropertyDelegate

Make work with Android View Binding simpler

Primary LanguageKotlinApache License 2.0Apache-2.0

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()

    // or for the ASAP availability
    maven { url = 'https://dl.bintray.com/kirich1409/maven' }
  }
}

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

Samples

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

    // Using reflection API under the hood and ViewBinding.bind
    private val viewBinding: ProfileBinding by viewBinding()

    // Using reflection API under the hood and ViewBinding.inflate
    private val viewBinding: ProfileBinding by viewBinding(createMethod = CreateMethod.INFLATE)

    // 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)
    }
}

License

Copyright 2020 Kirill Rozov

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.