• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Read Owner Data

Hi All,
I new in Android development. Can you please tell me how to read Device Owner Information like name, email id etc using android API.


Thanks and Regards,
Omprakash Verma :)
 
I don't know the specific class but try looking in the android.provider package to see if there is a provider that offers up the information you are looking for. Maybe Settings.Secure or Settings.System includes the information you are looking for. Give it and try and let us know.
 
Hi charles,
Thanks for the prompt reply. I tried the following but did not get the solution. Please correct me if i am digging in a wrong way or missing something.


Uri uri = Uri.withAppendedPath(People.CONTENT_URI, "owner");

Cursor c = managedQuery(uri, null, null, null, null);



Regards,
Om
 
Dear All,
It seems like, its not possible thats why I am not getting any reply on this thread. So its bad luck.

Let me try some where else, if i got some solution i will update this thread.

Regards,
Om
 
Back
Top Bottom