Android 如何按列对列表视图中的项目列表进行排序
任何人都可以帮助我如何在单击列表视图标题时对对象列表进行排序。我想按列对项目列表进行排序。
Can any one help me how to sort list of objects when i click on the list view header.I want to sort list of items by column.
任何人都可以帮助我如何在单击列表视图标题时对对象列表进行排序。我想按列对项目列表进行排序。
Can any one help me how to sort list of objects when i click on the list view header.I want to sort list of items by column.
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
嗯,我想这取决于你的数据。例如,您可以调用数据库来获取具有正确排序顺序的新游标。
或者,如果您有一个列表,请使用集合对其进行排序。 此处为自定义类的示例
Well, I guess it depends on your data. You could for example just call the database to get you a new cursor with the correct sorting order.
Or if you have a list sort it by using Collections. Example here for a custom class