gpt4 book ai didi

android - 如何在Android分页库中为列表、过滤器和搜索维护相同的数据源

转载 作者:行者123 更新时间:2023-12-05 00:16:36 30 4
gpt4 key购买 nike

我正在进行显示项目列表的 Activity ,并且还具有过滤器和搜索选项。我正在使用 android 分页库显示项目。当我滚动到底部加载下一组项目时,第一次将加载项目列表,其工作正常。但我也想过滤项目并搜索项目。在过滤或搜索项目时,我将使现有源无效。如果我没有使数据源无效,则过滤器和搜索 api 不会触发。我想使用数据源根据我的过滤器和搜索键加载新项目列表。

executor = Executors.newFixedThreadPool(5);
celebrityDataFactory = new CelebrityDataFactory(apicallInterface, mFansismParam);
networkState = Transformations.switchMap(celebrityDataFactory.getCelebrityData(),
dataSource -> dataSource.getNetworkState());

PagedList.Config pagedListConfig =
(new PagedList.Config.Builder())
.setEnablePlaceholders(false)
.setPrefetchDistance(8)
.setInitialLoadSizeHint(10)
.setPageSize(20).build();
if (!mFansismParam.getCategoryId().isEmpty()) {
celebrityDetails = new LivePagedListBuilder(celebrityDataFactory, pagedListConfig)
.setFetchExecutor(executor)
.build();
} else(!mFansismParam.getProfessionId().isEmpty()) {
celebrityDetails = new LivePagedListBuilder(celebrityDataFactory, pagedListConfig)
.setFetchExecutor(executor)
.build();
}

用于创建数据源的数据工厂

@Override
public DataSource create() {
celebrityDataSource = new CelebrityDataSource(apicallInterface, params);
celebrityData.postValue(celebrityDataSource);
return celebrityDataSource;
}

改进 API 调用:

 Call<CelebrityList> getCelebrityList(@Query("categoryId") String categoryId,
@Query("professionId") String professionId,
@Query("page") String pageNumber,
@Query("name") String searchKey);

数据源API回调:

apicallInterface.getCelebrityList(requestParams.getCategoryId(), "", "1", "").enqueue(new Callback<CelebrityList>() {
@Override
public void onResponse(Call<CelebrityList> call, Response<CelebrityList> response) {
if (response.isSuccessful()) {
initialLoading.postValue(NetworkState.LOADED);
networkState.postValue(NetworkState.LOADED);
if (!response.body().getData().isEmpty()) {
callback.onResult(response.body().getData(), null, "2");
} else {
networkState.postValue(new NetworkState(NetworkState.Status.SUCCESS, "No more results"));
}
} else {
initialLoading.postValue(new NetworkState(NetworkState.Status.FAILED, response.message()));
networkState.postValue(new NetworkState(NetworkState.Status.FAILED, response.message()));
}
}

最佳答案

您需要将搜索键保存在实时数据中,以便分页列表在发生更改时可以更改。因此,在您的 View 模型中,定义:

public MutableLiveData<String> filterTextAll = new MutableLiveData<>();

由于 pagedlist 也被定义为 LiveData,因此可以借助 Transformation 来完成此操作。 Transformations 类为您提供了可以更改 LiveData 对象中的值的函数。 swithMap 函数返回一个新的 LiveData 对象而不是一个值,在您的情况下,通过在后台创建新的数据源,将 searchkey 切换为获取与 searchkey 对应的 pagedList 对象。

pagedListLiveData = Transformations.switchMap(filterTextAll, input -> {
MyDataSourceFactory myDataSourceFactory = new MyDataSourceFactory(executor,input);
myDataSource = myDataSourceFactory.getMyDataSourceMutableLiveData();
networkState = Transformations.switchMap(myDataSource,
dataSource -> dataSource.getNetworkState());
return (new LivePagedListBuilder(myDataSourceFactory, pagedListConfig))
.setFetchExecutor(executor)
.build();
});

您可以更改 DataSourceFactory 和 DataSource 构造函数以添加 searchKey 参数:

public class MyDataSourceFactory extends DataSource.Factory {

MutableLiveData<MyDataSource> myDataSourceMutableLiveData;
private MyDataSource myDataSource;
private Executor executor;
private String searchKey;

public MyDataSourceFactory(Executor executor , String searchKey) {
this.executor= executor;
this.searchKey= searchKey;
this.myDataSourceMutableLiveData= new MutableLiveData<>();
}

@Override
public DataSource create() {
//*notice: It's important that everytime a DataSource factory create() is invoked a new DataSource instance is created
myDataSource= new MyDataSource(executor, searchKey);
myDataSourceMutableLiveData.postValue(myDataSource);
return myDataSource;
}

public MutableLiveData<MyDataSource> getMyDataSourceMutableLiveData() {
return myDataSourceMutableLiveData;
}

public MyDataSource getMyDataSource() {
return myDataSource;
}

}

对 DataSource 构造函数执行与上面相同的操作,以传递 searchKey 以在 api 调用中使用。还剩下一件事,在您的 Activity/Fragment (lifeCycleOwner) 中,每当 searchkey 更改触发时,请设置 filterTextAll mutableLiveData 的值,例如触发 searchview onQueryTextChange 或您喜欢的任何事件。

private void performSearch(String searchKey) {
// TODO: Perform the search and update the UI to display the results.
myViewModel.filterTextAll.setValue(searchKey);
myViewModel.pagedListLiveData.observe(owner, new Observer<PagedList<MyItem>>() {
@Override
public void onChanged(PagedList<MyItem> myItems) {
myAdapter.submitList(myItems);
}
});
myViewModel.networkState.observe(owner, new Observer<NetworkState>() {
@Override
public void onChanged(NetworkState networkState) {
myAdapter.setNetworkState(networkState);
}
});

myRecyclerView.setAdapter(myAdapter);
}

关于android - 如何在Android分页库中为列表、过滤器和搜索维护相同的数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57841020/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com