标签: android listview
我有一个listview,其中我有5个整数项。如何更改listview中项目的位置。假设我想在listview中交换第一和第三项。如何实现?有人请帮助..
答案 0 :(得分:0)
1.在构成ListView的列表中执行交换,
int temp = list.get(2); list.set(2,list.get(0)); list.set(0,temp);
2.在适配器上注明此更改;
adapter.notifyDataSetChanged();