We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i'm having difficulty in disabling this view i also tried to diable parent view still it is not working.
The text was updated successfully, but these errors were encountered:
Hi,
I personally used such hack.
final RecyclerView recyclerView = (RecyclerView) chipsInput.findViewById(R.id.chips_recycler); recyclerView.addOnChildAttachStateChangeListener(new RecyclerView.OnChildAttachStateChangeListener(){ public void onChildViewAttachedToWindow(View view) { View v = recyclerView.getLayoutManager().findViewByPosition(tagsInput.getFilterableList().size()+1); if (v != null && v.getVisibility() == View.VISIBLE && v instanceof ChipsInputEditText) { ChipsInputEditText editor = (ChipsInputEditText) v; editor.setFocusable(false); editor.setVisibility(View.GONE); } else { if (view instanceof ChipsInputEditText) { ChipsInputEditText editor = (ChipsInputEditText) view; editor.setFocusable(false); editor.setVisibility(View.GONE); } } } public void onChildViewDetachedFromWindow(View view) {} });
Sorry, something went wrong.
I will test it as well. Sorry for the late response
its ok plz test it.
No branches or pull requests
i'm having difficulty in disabling this view i also tried to diable parent view still it is not working.
The text was updated successfully, but these errors were encountered: