How to send search suggestions dynamically to data source and get updated pagelist in Android jetpack paging library?
问题 How to send search suggestions dynamically to data source's retrofit params and get updated pagedlist in Android jetpack paging library? Here's my web function in retrofit web service that brings data. @GET(version + "/get-bills") Call<ApiResponse<BillsModel>> getPartnerBillsSorted(@Query("page")int page, @Query("type")int type,@Query("search")String search ); This api is being called in data source and it gives me listing of all data, which i am listing in reyclerview using pagedlist. But i