MaterialChipsInput icon indicating copy to clipboard operation
MaterialChipsInput copied to clipboard

Not Working With Nested Scrollview

Open haris15 opened this issue 6 years ago • 6 comments

I have used material chip input inside nested scrollview so that its not working properly when i added chip from list it disable my scrollview to scroll up.

haris15 avatar Nov 23 '17 11:11 haris15

any solution found @haris15 ?

TechnourceAndroid avatar Dec 14 '17 13:12 TechnourceAndroid

no i have not found any solution

haris15 avatar Dec 15 '17 05:12 haris15

Any solutions?

rishabhsri20 avatar Nov 14 '18 07:11 rishabhsri20

Same issue faced,any Solution found please Do comment, will help more people like facing same issue thanks.

SGL-IGiS avatar Apr 24 '19 09:04 SGL-IGiS

@pchmn facing scrolling issue too, any workarounds ?

JobGetabu avatar May 07 '20 12:05 JobGetabu

You can clear focus from chip_input listening scroll status of nestedScrollView:

nestedScrollView.getViewTreeObserver().addOnScrollChangedListener(new OnScrollChangedListener() { @override public void onScrollChanged() { chipsInput.clearFocus(); } });

This clear focus and you can scrolling

nicolasrodf avatar Oct 09 '20 21:10 nicolasrodf