在网格布局的适配器中应用排序
我的 Android 应用程序中有一个网格视图,其中图像是从 xml 文件中获取的,并在网格视图中设置和查看。 xml 文件中的一些图像具有重要标记。 我想在网格的开头显示标记的图像。为此,我认为我必须应用排序。谁能建议我如何对图像进行排序? 提前致谢。
I have a Grid View in my Android Application in which Images are fetched from xml file and are set and viewed in the gridview. Some images from the xml file have important markings.
I want to show that marked images in the beginning of the grid. For that I think I have to apply sorting. Can anyone suggest me how to do sorting of images?
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您有一个要绑定到适配器的图像列表。如果您有一个图像列表并想要对其进行排序,则需要实现自定义比较器来对该数组(列表)进行排序。
这是自定义比较器的示例...
您可以通过以下方式使用此比较器...
谢谢。
I assume that you have a list of images which you are binding to adapter. If you have a list of images and want to sort that you need to implement custom Comparator for sorting that array(list).
here is the example of custom Comparator...
And you can use this Comparator by...
Thanks.
列出您的元素并使用
这应该对列表中的项目进行排序
Make a list of your elements and use
This should sort your items in the list