Меню поиска для Firestore RecyclerView " - PullRequest
0 голосов
/ 23 сентября 2018

Я пытаюсь создать поисковый фильтр для моего повторного просмотра, но мне нужна помощь, поскольку я не уверен, как его создать.

Мой текущий код указан ниже:

public class FriendsHolder extends RecyclerView.ViewHolder {
    @BindView(R.id.name)
    TextView textName;
    @BindView(R.id.image)
    CircleImageView imageView;
    @BindView(R.id.title)
    TextView textTitle;
    @BindView(R.id.company)
    TextView textCompany;
    @BindView(R.id.latitude)
    TextView textLatitude;
    @BindView(R.id.longitude)
    TextView textLongitude;

    public FriendsHolder(View itemView) {
        super(itemView);
        ButterKnife.bind(this, itemView);

    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...