使用另一个表中的列对CursorLoader进行排序

时间:2014-11-15 14:46:19

标签: android sorting android-listview android-cursoradapter android-cursorloader

我有:

  • 三个表: productsordersorder lines
  • CursorLoader和CursorAdapter: ProductsOrderLoaderProductsOrderAdapter
  • ListView:一个简单的products列表视图。

目前,我的列表视图显示了在某个productsorder)中购买的order lines以及products的其他内容。

但这些项目按productName排序。我想要的是按quantity对这些产品进行排序,但quantity列属于另一个表orderLine

是否可以坚持使用CursorLoader并使用另一个表中的列来实现listview的排序?

1 个答案:

答案 0 :(得分:0)

我在此处找到了答案:Get all the products, and putting a specific order's product first仅使用orderBy,而无需修改ContentProvider