I Have applied searching in my application. I used PageKeyedDataSource with loadInitial(),loadAfter(),loadBefore() method .And the data is set on RecyclerView .Now I want to apply search feature HOw can I apply search in Paging .Please Help Me on this.
public DriverRecyclerAdapter(Context context){
super(DIFF_CALLBACK);
this.mCtx = context;
}
@Override
public void onBindViewHolder(@NonNull MyDriverViewHolder holder, int position) {
Driverlist exampleDriverList=getItem(position);
}