android-viewbinding पर टैग किए गए जवाब

3
सिंथेटिक विचारों के साथ ViewBinding बनाम Kotlin एंड्रॉयड एक्सटेंशन
सिंथेटिक व्यू बाइंडिंग वाले कोटलिन एंड्रॉइड एक्सटेंशन के साथ नए व्यूबाइंडिंग की तुलना कैसे की जाती है ? नए ViewBindings द्वारा प्रदान की गई NullSafety और TypeSafety के अलावा, हमें Views पर सिंथेटिक बाइंडिंग का उपयोग करने के Kotlin तरीके पर खाई पर विचार क्यों करना चाहिए। क्या नया ViewBinding …

5
java.lang.NullPointerException: आईडी के साथ आवश्यक दृश्य गुम:
एंड्रॉइड स्टूडियो 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" /> और एक और एक्सएमएल unclude prev। xml: <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bottonContainer" android:layout_width="0dp" …

3
ViewBinding - शामिल लेआउट के लिए बाध्यकारी कैसे प्राप्त करें?
व्यूबाइंडिंग के साथ काम करते समय मुझे कुछ दस्तावेज नहीं हैं। पहला: शामिल किए गए सामान्य दृश्य लेआउट भागों के लिए बाध्यकारी कैसे प्राप्त करें, मुख्य बंधन मुख्य लेआउट में केवल आइटम देखते हैं? दूसरा: मर्ज किए गए प्रकार के लेआउट भागों के लिए बाध्यकारी कैसे प्राप्त करें, फिर से …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.