คำถามติดแท็ก android-viewbinding

3
ViewBinding vs Kotlin Android ส่วนขยายพร้อมมุมมองสังเคราะห์
ViewBindingใหม่เปรียบเทียบกับKotlin Android Extensionsกับการโยงมุมมองสังเคราะห์อย่างไร นอกเหนือจากรูปแบบ NullSafety และ TypeSafety ที่ได้รับจาก ViewBindings ใหม่ทำไมเราจึงควรพิจารณาวิธี Kotlin ในการใช้การเชื่อมโยงสังเคราะห์ใน Views ViewBinding ใหม่มีประสิทธิภาพมากกว่าหรือไม่เนื่องจากสร้างคลาส Binding ไว้ก่อนมือ?

5
java.lang.NullPointerException: ไม่มีมุมมองที่ต้องการพร้อม ID:
Android Studio 3.6 ในแอพ / build.gradle: android { viewBinding.enabled = true ที่นี่ xml ของฉัน: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bluetoothBottonMainContainer" android:layout_width="0dp" android:layout_height="104dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> <View android:id="@+id/viewPointNotSelect" android:layout_width="16dp" android:layout_height="16dp" android:background="@drawable/circle_transparent" app:layout_constraintBottom_toBottomOf="@+id/separator" app:layout_constraintEnd_toStartOf="@+id/separator" app:layout_constraintTop_toTopOf="parent" /> และ xml อันอื่นที่ไม่ได้แยกออกก่อนหน้านี้ XML: <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bottonContainer" android:layout_width="0dp" android:layout_height="104dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"> …

3
ViewBinding - วิธีการผูกสำหรับเค้าโครงรวม?
ในขณะที่ทำงานกับ ViewBinding ฉันเจอกรณีที่มีเอกสารไม่มาก ครั้งแรก: วิธีการเชื่อมโยงสำหรับส่วนเค้าโครงมุมมองทั่วไปที่รวมการโยงหลักดูเฉพาะรายการในเค้าโครงหลัก ที่สอง: วิธีการเชื่อมโยงสำหรับส่วนเลย์เอาต์ชนิดผสานรวมอีกครั้งการโยงหลักดูเฉพาะรายการในโครงร่างหลัก
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.