Skip to content
New issue

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

Update FilterableListView.java #75

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update ChipsInput.java
  • Loading branch information
ChrisLMills authored Dec 16, 2017
commit b3aee9af6aad7856c8b4a42ccc81d38569af4a35
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ public class ChipsInput extends ScrollViewMaxHeight {
// xml element
@BindView(R2.id.chips_recycler) RecyclerView mRecyclerView;
// adapter
public ChipsAdapter mChipsAdapter;
private ChipsAdapter mChipsAdapter;
// attributes
private static final int NONE = -1;
private String mHint;
@@ -265,6 +265,10 @@ public void onTextChanged(CharSequence text) {
public List<? extends ChipInterface> getSelectedChipList() {
return mChipsAdapter.getChipList();
}

public ChipsAdapter getAdaptor() {
return mChipsAdapter;
}

public String getHint() {
return mHint;