【发布时间】:2015-11-13 17:34:39
【问题描述】:
有没有办法以编程方式使用LinearLayoutManager 将特定项目移动到RecyclerView 中的特定位置?
【问题讨论】:
-
是否可以选择更新数据集?
标签: android android-recyclerview linearlayoutmanager
有没有办法以编程方式使用LinearLayoutManager 将特定项目移动到RecyclerView 中的特定位置?
【问题讨论】:
标签: android android-recyclerview linearlayoutmanager
你可以这样做:
一些 Activity/Fragment/Whatever:
List<String> dataset = new ArrayList<>();
RecyclerView recyclervSomething;
LinearLayoutManager lManager;
MyAdapter adapter;
//populate dataset, instantiate recyclerview, adapter and layoutmanager
recyclervSomething.setAdapter(adapter);
recyclervSomething.setLayoutManager(lManager);
adapter.setDataset(dataset);
我的适配器:
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
private List<String> dataset;
public MyAdapter() {}
//implement required methods, extend viewholder class...
public void setDataset(List<String> dataset) {
this.dataset = dataset;
notifyDataSetChanged();
}
// Swap itemA with itemB
public void swapItems(int itemAIndex, int itemBIndex) {
//make sure to check if dataset is null and if itemA and itemB are valid indexes.
String itemA = dataset.get(itemAIndex);
String itemB = dataset.get(itemBIndex);
dataset.set(itemAIndex, itemB);
dataset.set(itemBIndex, ItemA);
notifyDataSetChanged(); //This will trigger onBindViewHolder method from the adapter.
}
}
【讨论】:
Collections.swap(this.mListItems, oldIndex, index); notifyItemMoved(oldIndex, newIndex)