I want to read SMS from inbox. The code snippet given below works fine on the HTC Desire but does not work on the Samsung Galaxy.
Uri uri = Uri.parse("content://sms/inbox");
Cursor c= getContentResolver().query(uri, null, null ,null,null);
startManagingCursor(c);
String[] body = new String[c.getCount()];
String[] number = new String[c.getCount()];
System.out.println("c.getCount() :: " + c.getCount() + " c.moveToFirst() :: " + c.moveToFirst());
if(c.moveToFirst()) {
for(int i=0;i<c.getCount();i++) {
body[i]= c.getString(c.getColumnIndexOrThrow("body")).toString();
number[i]=c.getString(c.getColumnIndexOrThrow("address")).toString();
c.moveToNext();
}
}
c.close();
On the samsung galaxy c.getCount() returns 0 and c.moveToFirst()returns false.
Thanks in advance.