MatrixCursor_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > MatrixCursor

MatrixCursor

 2010/12/23 8:05:17  hklongshao  http://hklongshao.javaeye.com  我要评论(0)
  • 摘要:如需转载请著名作者:倚风听雪来源:http://hklongshao.javaeye.comContentProvider对外共享数据的时候的query()方法是需要一个cursor的。但是当ContentProvider不是从数据库中去的数据,而又需要返回cursor的时候就需要MatrixCursor。MatrixCursor用于当数据不是存储在数据库的情况下,穿件cursor使用的。String[]tableCursor=newString[]{"_id","path"
  • 标签:
如需转载请著名

作者:倚风听雪         来源:http://hklongshao.javaeye.com



ContentProvider对外共享数据的时候的query()方法是需要一个cursor的。

但是当ContentProvider不是从数据库中去的数据,而又需要返回cursor的时候就需要MatrixCursor。

MatrixCursor用于当数据不是存储在数据库的情况下,穿件cursor使用的。

String[] tableCursor = new String[] {"_id" ,"path", "content" };
MatrixCursor menuCursor = new MatrixCursor(tableCursor);
Item item = new Item();
for(int count = 0;count<items.size();count++){
    item = items.get(count);
    menuCursor.addRow(new Object[] {count,item.getUrlPath(),item.getContent()}); 
}

  • 相关文章
发表评论
用户名: 匿名