Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在一个查询中获取所有 mms addr 条目,而不是一次一个条目(或一组条目)?即类似的东西:
Uri uri = Uri.parse("content://mms/addr"); Cursor cur = cr.query(uri, null, null, null, null);
我不能以正常方式执行此操作,因为我需要 addr 表中的所有记录,并且有时没有所有消息 ID 来构建 URI。