Algolia的xml的“属性”引发编译错误

时间:2019-07-06 09:28:38

标签: android xml algolia

我正在尝试使用其结果UI并遵循其指南来实施Algolia。

我已按如下所示放入应用程序的build.gradle dataBinding.enabled true

android {
    compileSdkVersion 28
    buildToolsVersion "29.0.0"
    dataBinding.enabled true
    ......

在单次点击的布局中,我只有一个TextView,我尝试按照以下说明对它进行装箱,但是会引发编译错误:

<?xml version="1.0" encoding="utf-8"?>
<layout
        xmlns:algolia="http://schemas.android.com/apk/res-auto"
        xmlns:android="http://schemas.android.com/apk/res/android">

    <androidx.constraintlayout.widget.ConstraintLayout
            xmlns:tools="http://schemas.android.com/tools"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        <TextView
                android:id="@+id/algolia_question_title"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                tools:text="Not able to succefully rum npm install comand on git bash"
                android:fontFamily="@font/roboto_medium"
                android:textSize="15sp"
                android:textColor="@color/gray900"
                algolia:layout_constraintStart_toStartOf="parent"
                android:layout_marginStart="24dp"
                algolia:layout_constraintTop_toTopOf="parent"
                android:layout_marginTop="8dp"
                algolia:layout_constraintEnd_toEndOf="parent"
                android:layout_marginEnd="24dp"
                algolia:attribute='@{"title"}'/>
        <View
                android:id="@+id/divider4"
                android:layout_width="match_parent"
                android:layout_height="2dp"
                android:background="?android:attr/listDivider"
                algolia:layout_constraintTop_toBottomOf="@+id/algolia_question_title"
                android:layout_marginTop="8dp"/>

    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

如果我删除此行algolia:attribute='@{"title"}',则编译正常。我在说什么错?

编辑:我能够找到一条错误消息,内容如下: Cannot find the setter for attribute 'algolia:attribute' with parameter type java.lang.String on android.widget.TextView.file:C\

该消息可能还有更多内容,但是仅当我将鼠标悬停在某个错误行上并持续到屏幕结尾时才会显示,因此我不知道是否还有更多内容,因为我对此并不熟悉消息。

1 个答案:

答案 0 :(得分:0)

添加此实现后添加了我的问题

implementation 'com.algolia:instantsearch-androidx:1.15.2'