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

Change ChipsInputLayout inputType #17

Closed erichlotto closed 6 years ago

erichlotto commented 6 years ago

Seems like the input type in the ChipsInputLayout is locked and can`t use predictions. I want my users to create custom tags for contents so predictions and autocorrect are very nice features to have.

tylersuehr7 commented 6 years ago

Hey thanks for telling me about this issue, in the next release I'll add a method to allow the input type to be changed on the internal EditText using by ChipsInputLayout.

tylersuehr7 commented 6 years ago

I've updated support for this feature in this release 2.3:

Using ChipsInputLayout#setInputType(int) will allow you to change the input type on the internal ChipsEditText. Also, I've added a getter for that value as well: ChipsInputLayout#getInputType() : int.