e: [kapt] возникла исключительная ситуация: android.databinding.tool.util.LoggedErrorException: обнаружены ошибки привязки данных - PullRequest
0 голосов
/ 06 ноября 2018

Я включил привязку данных, но при выполнении кода я получаю эту ошибку.

ошибка

e: [kapt] Возникла исключительная ситуация: android.databinding.tool.util.LoggedErrorException: обнаружены ошибки привязки данных.

Я создал класс фрагмента и XML для этого класса. Я могу импортировать datbindingutil класс.

Я перестроил / синхронизировал файлы Gradle / сделал недействительным кеш и перезапустил, ничего не получилось.

XML

<layout>

<!--suppress AndroidUnknownAttribute -->
<data class=".databinding.ProfileFragmentBinding">

    <variable
        name="user"
        type="com.sample.sample.user.User" />

    <variable
        name="vm"
        type="com.sample.sample.user.UserViewModel" />

    <variable
        name="handler"
        type="com.sample.sample.user.profile.ProfileFragment" />
</data>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/profileIV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/medium"
        android:layout_marginTop="@dimen/medium"
        android:contentDescription="@null"
        android:src="@mipmap/ic_launcher_round"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:url="@{user.avatarUrl}" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="@+id/profileIV"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="@+id/profileIV">

        <TextView
            android:id="@+id/profileNameLabel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="@font/myriad_pro_semibold"
            android:text="@{user.name}"
            android:textColor="@color/black_transparent_de"
            android:textSize="@dimen/text_regular"
            tools:text="NAME" />

        <TextView
            android:id="@+id/badgeLabel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:fontFamily="@font/myriad_pro_semibold"
            android:text="@{user.badge}"
            android:textColor="@color/grey_000000"
            android:textSize="@dimen/text_regular"
            tools:text="Superman" />

        <TextView
            android:id="@+id/profile_Label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:fontFamily="@font/roboto_bold"
            android:text="@{user.badge}"
            android:textColor="@color/green_39b54a"
            android:textSize="@dimen/text_small"
            tools:text="farmer_v1" />

    </LinearLayout>

    <ImageView
        android:id="@+id/badgeIV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="@dimen/medium"
        android:layout_marginTop="@dimen/medium"
        android:contentDescription="@null"
        android:src="@mipmap/ic_launcher"
        app:error="@{@drawable/ic_profile_default_grey_24dp}"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:placeholder="@{@drawable/ic_profile_default_grey_24dp}"
        app:url="@{user.badgeUrl}" />

    <ImageView
        android:id="@+id/locationPinIV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/medium"
        android:contentDescription="@null"
        android:src="@drawable/ic_location_pin"
        app:layout_constraintStart_toStartOf="@+id/profileIV"
        app:layout_constraintTop_toBottomOf="@+id/profileIV" />

    <TextView
        android:id="@+id/profileAddressTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/narrow"
        android:fontFamily="@font/roboto"
        android:textColor="@color/grey_000000"
        app:layout_constraintBottom_toBottomOf="@+id/locationPinIV"
        app:layout_constraintLeft_toRightOf="@+id/locationPinIV"
        app:layout_constraintTop_toTopOf="@+id/locationPinIV"
        tools:text="bangalore, Karnataka" />

    <ImageView
        android:id="@+id/dobIV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/standard"
        android:layout_marginTop="@dimen/medium"
        android:contentDescription="@null"
        android:src="@drawable/ic_dob"
        app:layout_constraintLeft_toRightOf="@+id/profileAddressTV"
        app:layout_constraintTop_toBottomOf="@+id/profileIV" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/narrow"
        android:fontFamily="@font/roboto"
        android:textColor="@color/grey_000000"
        app:layout_constraintBottom_toBottomOf="@+id/locationPinIV"
        app:layout_constraintLeft_toRightOf="@+id/dobIV"
        app:layout_constraintTop_toTopOf="@+id/locationPinIV"
        tools:text="born on 01/01/2000" />

    <TextView
        android:id="@+id/activityLabel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/big"
        android:fontFamily="@font/myriad_pro_semibold"
        android:text="@string/activities"
        android:textColor="@color/black_transparent_de"
        android:textSize="@dimen/text_regular"
        app:layout_constraintStart_toStartOf="@+id/profileIV"
        app:layout_constraintTop_toBottomOf="@+id/locationPinIV" />

    <View
        android:id="@+id/dividerV"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginEnd="@dimen/small"
        android:layout_marginStart="@dimen/small"
        android:layout_marginTop="@dimen/regular"
        android:background="@color/grey_000000"
        app:layout_constraintTop_toBottomOf="@+id/activityLabel" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@+id/dividerV">

        <!--<com.google.android.material.tabs.TabLayout
            android:id="@+id/tablayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:pager="@{(pager)}"
            app:tabGravity="fill"
            app:tabIndicatorColor="@color/black"
            app:tabMode="fixed"
            app:tabSelectedTextColor="@color/black"
            app:tabTextAppearance="@style/CustomTextTab"
            app:tabTextColor="#b4ffffff" />

        <androidx.viewpager.widget.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tablayout"
            app:handler="@{handler}"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />-->

    </RelativeLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

класс

    class ProfileFragment : Fragment() {
    @Inject
    lateinit var mFactory: ViewModelProvider.Factory
    private lateinit var mBinding: ProfileFragmentBinding

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        mBinding = DataBindingUtil.inflate(inflater, R.layout.fragment_profile, container, false);
        return mBinding.root
    }

    override fun onActivityCreated(savedInstanceState: Bundle?) {
        super.onActivityCreated(savedInstanceState)
        val vm: UserViewModel = getViewModel(mFactory)
        mBinding.vm = vm
        //mBinding.handler = this
        //mBinding.setLifecycleOwner(this)
    }

    /*@BindingAdapter("bind:handler")
    fun bindViewPagerAdapter(view: ViewPager, activity: MainActivity) {
        val adapter = ProfilePagerAdapter(view.context, activity.supportFragmentManager)
        view.adapter = adapter
    }

    @BindingAdapter("bind:pager")
    fun bindViewPagerTabs(view: TabLayout, pagerView: ViewPager) {
        view.setupWithViewPager(pagerView, true)
    }*/
}

Ответы [ 3 ]

0 голосов
/ 12 июня 2019

в моем случае я смог найти его, когда указатель мыши наводил курсор на эту строку в выводе сборки, как показано здесь:

без наведения: enter image description here

с парением: enter image description here

действительно позор, как они показывают ошибку, для самой простой ошибки, которую я когда-либо пробовал, 10 различных решений также аннулировали кеш и ...

UPDATE

Вы также можете нажать здесь:

enter image description here

и вы получите что-то вроде этого:

enter image description here

, что является очень подробной информацией об ошибке, мне не хватало этой кнопки за 7 лет разработки Android: D

0 голосов
/ 10 июля 2019

Чаще всего эта ошибка возникает, когда имя переменной, переданное в XML-файл через привязку данных, неверно. Просто наведите курсор мыши на ошибку, и вы сможете найти там виновную переменную.

0 голосов
/ 16 февраля 2019

Запустите ./gradlew build --stacktrace, чтобы проверить детали, которые сообщат вам, где возникла проблема, что-то вроде:

e: [kapt] Возникла исключительная ситуация: android.databinding.tool.util.LoggedErrorException: Обнаружены ошибки привязки данных. Не удалось найти аксессор хх файл: xxx / app / src / main / res / layout / фрагмент_xxxx.xml Строка: 108

Иногда, если вы изменили имя свойства, особенно при изменении на refactor => rename, имя свойства не будет автоматически изменено в xml.

...