我有:
products
,orders
和order lines
。ProductsOrderLoader
和ProductsOrderAdapter
。products
列表视图。目前,我的列表视图显示了在某个products
(order
)中购买的order lines
以及products
的其他内容。
但这些项目按productName
排序。我想要的是按quantity
对这些产品进行排序,但quantity
列属于另一个表orderLine
。
是否可以坚持使用CursorLoader
并使用另一个表中的列来实现listview
的排序?
答案 0 :(得分:0)
我在此处找到了答案:Get all the products, and putting a specific order's product first仅使用orderBy
,而无需修改ContentProvider
。