2.AsyncQueryHandler、内容提供者

会话页面

Test :测试
  1. public class Test extends AndroidTestCase{
  2. public void test(){
  3. Uri uri = Uri.parse("content://sms/conversations");
  4. String[] projection={
  5. "sms.body AS snippet",
  6. "sms.thread_id AS thread_id",
  7. "groups.msg_count AS msg_count",
  8. "address as address",
  9. "date as date"
  10. };
  11. Cursor cursor = getContext().getContentResolver().query(uri, projection, null, null, " date desc");
  12. Tools.printCursor(cursor);
  13. }
  14. public void testNumber(){
  15. String number = "8888";
  16. Uri uri = PhoneLookup.CONTENT_FILTER_URI;
  17. Uri uri2 = Uri.withAppendedPath(uri, number);
  18. Cursor query = getContext().getContentResolver().query(uri2, null, null, null, null);
  19. Tools.printCursor(query);
  20. }
  21. public void testNumber2(){
  22. String number = "8888";
  23. Uri uri = PhoneLookup.CONTENT_FILTER_URI;
  24. Uri uri2 = Uri.withAppendedPath(uri, number);
  25. Cursor query = getContext().getContentResolver().query(uri, null, null, null, null);
  26. Tools.printCursor(query);
  27. }
  28. public void getFace(){
  29. // 根据号码查询联系人的头像:
  30. // Step1:查询联系人的id: URI为PhoneLookup.CONTENT_FILTER_URI
  31. // Step2:查询ContactsContract.Contacts.CONTENT_URI + 加上上面得到id, 构建好Uri之后调用ContactsContract.Contacts.openContactPhotoInputStream得到图片的流.
  32. String number ="2222";
  33. int id = Tools.findIDByNumber(getContext(), number);
  34. Uri uri = Uri.withAppendedPath(Contacts.CONTENT_URI, ""+id);
  35. InputStream input = Contacts.openContactPhotoInputStream(getContext().getContentResolver(), uri);
  36. System.out.println(input);
  37. }
  38. public void findContactFromsub(){
  39. Uri uri = Phone.CONTENT_URI;
  40. // Uri uri = PhoneLookup.CONTENT_FILTER_URI;
  41. Cursor cursor = getContext().getContentResolver().query(uri, null, null, null, null);
  42. Tools.printCursor(cursor);
  43. }
  44. }

Tools :
  1. public class Tools {
  2. public static void printCursor(Cursor cursor) {
  3. if (cursor == null) {
  4. System.out.println("cursor == null");
  5. return;
  6. }
  7. if (cursor.getCount() == 0) {
  8. System.out.println("cursor.getCount() == 0");
  9. return;
  10. }
  11. while (cursor.moveToNext()) {
  12. int columnCount = cursor.getColumnCount();
  13. System.out.println("当前是第几行:" + cursor.getPosition());
  14. for (int i = 0; i < columnCount; i++) {
  15. String columnName = cursor.getColumnName(i);
  16. String value = cursor.getString(i);
  17. System.out.println(columnName + " : " + value);
  18. }
  19. }
  20. }
  21. /**
  22. * 通过电话号码,查询联系人姓名
  23. *
  24. * @param ctx
  25. * @param number
  26. * 要查询的电话号码
  27. * @return 返回联系人姓名,或者 null 表明联系人中,无此人
  28. */
  29. public static String findNameByNumber(Context ctx, String number) {
  30. String name = null;
  31. Uri uri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, number);
  32. Cursor cursor = ctx.getContentResolver().query(uri2,
  33. new String[] { "display_name" }, null, null, null);
  34. if (cursor.getCount() == 0) {
  35. return null;
  36. } else {
  37. // cursor 返回时,默认指向的是 第一行的上一行,即 -1 行 ,而所有的数据是从 第 0行开始的。
  38. cursor.moveToNext();
  39. name = cursor.getString(0);// cursor 仅查询一列内容,所以取的时候,列的索引值为 0
  40. }
  41. return name;
  42. }
  43. /**
  44. * 通过电话号码,查询联系人ID
  45. *
  46. * @param ctx
  47. * @param number
  48. * 要查询的电话号码
  49. * @return 返回联系人ID,或者 -1 表明无此联系人中
  50. */
  51. public static int findIDByNumber(Context ctx, String number) {
  52. int contactId;
  53. Uri uri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, number);
  54. Cursor cursor = ctx.getContentResolver().query(uri2,
  55. new String[] { "_id" }, null, null, null);
  56. if (cursor.getCount() == 0) {
  57. return -1;
  58. } else {
  59. // cursor 返回时,默认指向的是 第一行的上一行,即 -1 行 ,而所有的数据是从 第 0行开始的。
  60. cursor.moveToNext();
  61. contactId = cursor.getInt(0);// cursor 仅查询一列内容,所以取的时候,列的索引值为 0
  62. }
  63. return contactId;
  64. }
  65. /**
  66. * 通过联系人的ID,查询联系人的头像
  67. *
  68. * @param ctx
  69. * @param contactId
  70. * @return 返回 bitmap 头像, 如果此联系人没有头像的话,返回 null
  71. */
  72. public static Bitmap getFaceById(Context ctx, String contactId) {
  73. Bitmap bitmap = null;
  74. Uri uri = Uri.withAppendedPath(Contacts.CONTENT_URI, contactId);
  75. InputStream input = Contacts.openContactPhotoInputStream(ctx.getContentResolver(), uri);
  76. if(input == null){
  77. return null;
  78. }
  79. bitmap = BitmapFactory.decodeStream(input);
  80. return bitmap;
  81. }
  82. /**
  83. * 根据会话ID,删除短信
  84. * @param ctx
  85. * @param threadId
  86. */
  87. public static void deleteMsgByThreadId(Context ctx, Integer threadId) {
  88. ctx.getContentResolver().delete(MyConstants.URI_SMS, " thread_id = ?", new String[]{""+threadId});
  89. }
  90. }
MyQueryHandler 
  1. public class MyQueryHandler extends AsyncQueryHandler{
  2. public MyQueryHandler(ContentResolver cr) {
  3. super(cr);
  4. }
  5. @Override
  6. /**
  7. * 当startQuery 执行完成后,回调 此方法
  8. * token 是startQuery 方法中的第一个参数
  9. * cookie 是startQuery 方法中的第二个参数
  10. * cursor 查询后的结果
  11. */
  12. protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
  13. System.out.println("onQueryComplete : token:"+token);
  14. System.out.println("onQueryComplete : cookie:"+cookie);
  15. Tools.printCursor(cursor);
  16. if(cookie!=null && cookie instanceof CursorAdapter){
  17. CursorAdapter adapter = (CursorAdapter) cookie;
  18. // 给adapter 设置新的cursor
  19. adapter.changeCursor(cursor);
  20. }
  21. if(cursorChangedListener!=null){
  22. cursorChangedListener.onCursorChanged(token, cookie, cursor);
  23. }
  24. }
  25. public IOnCursorChangedListener getCursorChangedListener() {
  26. return cursorChangedListener;
  27. }
  28. public void setOnCursorChangedListener(IOnCursorChangedListener cursorChangedListener) {
  29. this.cursorChangedListener = cursorChangedListener;
  30. }
  31. private IOnCursorChangedListener cursorChangedListener;
  32. /**
  33. * 声明,cursor改变时的监听接口
  34. * @author Administrator
  35. *
  36. */
  37. public interface IOnCursorChangedListener{
  38. void onCursorChanged(int token, Object cookie, Cursor cursor);
  39. }
  40. }
MyConstants 
  1. public class MyConstants {
  2. /**
  3. * 查询会话的URI
  4. */
  5. public static Uri URI_CONVERSATION = Uri.parse("content://sms/conversations");
  6. /**
  7. * 直接操作SMS表
  8. */
  9. public static Uri URI_SMS = Uri.parse("content://sms");
  10. /**
  11. * 获得所有联系人的URI
  12. */
  13. public static Uri URI_CONTACTS = Phone.CONTENT_URI;
  14. /**
  15. * 表示短信的类型 ,1 表示是接收到的短信
  16. */
  17. public static int TYPE_RECEIVE = 1;
  18. /**
  19. * 表示短信的类型 ,2 表示是发送的短信
  20. */
  21. public static int TYPE_SEND = 2;
  22. }
 




posted @ 2015-11-25 10:20  梦和远方  阅读(181)  评论(0编辑  收藏  举报