I want to know where is all the stored in android. Like inbox messages are stored in
content://sms/inbox
and outbox msgs in
content://sms/outbox
or may b they are not stored , but they are parsed form these areas like in this statement
contentResolver.query(Uri.parse("content://sms/inbox"),null, null, null, null);
So I want to know that how to get all "folders" in "content://" or in "content://sms/" .
Also I want to know where the call logs are stored in or from where to fetch them. Is there any way to get all these areas where these type of things are stored??
The thing I wanna Know is How some one knows that there are inbox sms at "content://sms/inbox" and out box at "content://sms/outbox" ?? I just want to explore the whole directory, wheather Inbuilt or of App's. Please Explain the Answers