Я пытаюсь создать поисковый фильтр для моего повторного просмотра, но мне нужна помощь, поскольку я не уверен, как его создать.
Мой текущий код указан ниже:
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);
}
}