Не удается привязать RatingBar к RecyclerView с помощью привязки Android - PullRequest
0 голосов
/ 05 мая 2019

Я использую kotlin для привязки RatingBar, помещенного в RecyclerView, но получаю следующую ошибку:

Не удается найти установщик для атрибута «app: ratingValue» с типом параметра java.lang. Double на android.widget.RatingBar.

enter image description here

Я пытался следить за различными блогами, устанавливая значение RatingBar , но не могу реализовать его в адаптере.

Ниже приведен мой модельный класс:

@Entity(tableName = "Results")
class Result {

    companion object {

        @JvmStatic
        @BindingAdapter("ratingValue")
        fun setRating(ratingBar: RatingBar, mVoteAverage: Float) {
            if (mVoteAverage != null) {
                ratingBar.rating = mVoteAverage
                val stars = ratingBar.progressDrawable as LayerDrawable
                stars.getDrawable(2).setColorFilter(ContextCompat.getColor(ratingBar.context, R.color.rating_bar), PorterDuff.Mode.SRC_ATOP)
                val roundVal = Math.round(mVoteAverage!!)
                ratingBar.numStars = roundVal
            }

        }
    }

    constructor(mId: Long?, mOverview: String?, mPosterPath: String?, mTitle: String?, mVoteAverage: Double?) {
        this.mId = mId
        this.mOverview = mOverview
        this.mPosterPath = mPosterPath
        this.mTitle = mTitle
        this.mVoteAverage = mVoteAverage
    }

    constructor()

    @PrimaryKey
    @SerializedName("id")
    var mId: Long? = null
    @SerializedName("overview")
    var mOverview: String? = null
    @SerializedName("poster_path")
    var mPosterPath: String? = null
    @SerializedName("title")
    var mTitle: String? = null
    @SerializedName("vote_average")
    var mVoteAverage: Double? = null


}

Затем это привязываемый XML-макет:

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

    <data>

        <variable
            name="movie"
            type="com.movieapp.huxymovies.model.Result" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:background="@color/bg"
        android:orientation="vertical">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal">

                        <RatingBar
                            android:id="@+id/rating_bar"
                            style="?android:attr/ratingBarStyleSmall"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="9dp"
                            app:ratingValue="@{movie.mVoteAverage}"/>


                    </LinearLayout>


            </LinearLayout>
    </LinearLayout>
</layout>

Тогда это мой класс адаптера:

class ResultAdapter(private val context: Context) : PagedListAdapter<Result, ResultAdapter.ResultViewHolder>(DIFF_CALLBACK) {

    public lateinit var mBinding: ItemActivitymainBinding

    override fun onBindViewHolder(holder: ResultViewHolder, position: Int) {

        val result = getItem(position)

        if (result != null) {

            holder.itemActivitymainBinding.movie = result
            holder.itemActivitymainBinding.ratingBar.rating = result.mVoteAverage as (Float)
            holder.itemActivitymainBinding.titleTxt.text = result.mTitle

        }
    }

    class ResultViewHolder(itemView: ItemActivitymainBinding) : RecyclerView.ViewHolder(itemView.root) {


        var itemActivitymainBinding: ItemActivitymainBinding
        var root: View

        init {
            root = itemView.root

            itemActivitymainBinding = itemView
        }
    }

    }
}

Я думаю, что что-то упущено в onBindViewHolder(), но не могу найти это, что я пропускаю?

1 Ответ

1 голос
/ 05 мая 2019

Свойство mVoteAverage: Double? вашего Result класса является Double. Ваш метод @BindingAdapter имеет параметр Float. Вот почему привязка не работает. Изменение

    @JvmStatic
    @BindingAdapter("ratingValue")
    fun setRating(ratingBar: RatingBar, mVoteAverage: Float)

до

    @JvmStatic
    @BindingAdapter("ratingValue")
    fun setRating(ratingBar: RatingBar, mVoteAverage: Double)

должен сделать трюк.

...