android – 在contentProvider中选择前n行

前端之家收集整理的这篇文章主要介绍了android – 在contentProvider中选择前n行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我选择这个:
final Cursor cursorConversations = getContentResolver().query(
        Uri.parse("content://gmail-ls/conversations/" + Uri.encode(mailAddress)),null,BaseColumns._ID + " DESC");

 ContentQueryMap mQueryMap 
        = new ContentQueryMap(cursorConversations,BaseColumns._ID,true,null);

使用ContentQueyMap,我可以缓存Cursor数据并在Cursor关闭的情况下迭代它(我需要它来提升性能).

现在,我想要选择Corsor只检索前五十行.在mQueryMap.getRows().entrySet()中循环50次的解决方案是不正确的:我不希望mQueryMap获取Cursor的所有行,但只有前五十行.

任何的想法?是否存在where子句只能获得前n行?

解决方法

你可以做到
final Cursor cursorConversations = getContentResolver().query(
    Uri.parse("content://gmail-ls/conversations/" + Uri.encode(mailAddress)),BaseColumns._ID + " DESC " + " LIMIT 5");

排序后“LIMIT x”.

干杯

原文链接:https://www.f2er.com/android/317278.html

猜你在找的Android相关文章