tylersuehr7 / chips-input-layout

A customizable Android ViewGroup for displaying Chips (specified in the Material Design Guide).
MIT License
583 stars 63 forks source link

XML example in Readme should be updated #9

Closed d34n0s closed 7 years ago

d34n0s commented 7 years ago

Hey Mate,

Thanks for making the library available. Just a minor thing. In your readme XML example you have

<com.tylersuehr.library.ChipsInputLayout android:id="@+id/chips_input" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Start typing for chips... " android:textColorHint="#757575" android:textColor="#212121" app:detailedChipsEnabled="true" app:customChipsEnabled="true"/>

Which is fine for the way you have setup your example app where the library is local in a folder.

But if you add the library via gradle, then you need to use

<com.tylersuehr.chips.ChipsInputLayout android:id="@+id/chips_input" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Start typing for chips... " android:textColorHint="#757575" android:textColor="#212121" app:detailedChipsEnabled="true" app:customChipsEnabled="true"/>

tylersuehr7 commented 7 years ago

Thanks for telling me about this issue, I've just updated it now!