March 13th, 2009, 02:25 AM
|
#1 (permalink)
|
|
New Member
Join Date: Mar 2009
Posts: 3
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
How to read all Email and Gmail programmatically
Hello, Guys,
I need to read all Email and Gmail, then remove the specific one(s). But I found Android doesn't provide APIs to receive Email, and I read Gmail failed as following:
ContentResolver resolver = getContentResolver();
Uri uriGmail = Uri.parse("content://gmail/");
Cursor cursor = resolver.query(uriGmail, null, null, null, null);
.................
function resolver.query(xxx) returns null;
how can I implement those features? Thanks a lot.
|
|
|