techery / ProperRatingBar

Inspired by stock android RatingBar. Simpler, has features that original lacks.
410 stars 70 forks source link

Does not work with data binding #32

Open slavasav opened 6 years ago

slavasav commented 6 years ago

Xml: <io.techery.properratingbar.ProperRatingBar android:id="@+id/rating" style="@style/Rating" app:prb_defaultRating="@{model.rating}" android:layout_height="wrap_content" android:layout_width="wrap_content" /> Error: Cannot find the setter for attribute 'app:prb_defaultRating' with parameter type java.lang.Integer on io.techery.properratingbar.ProperRatingBar.

This works: <io.techery.properratingbar.ProperRatingBar android:id="@+id/rating" style="@style/Rating" app:prb_defaultRating="2" android:layout_height="wrap_content" android:layout_width="wrap_content" />