How to get the absolute path of the contact URI?
I am getting uri as content://com.android.contacts/data/592 . I need to convert this in to absolute path . How to achieve this.Thanks 开发者_运维技巧in advance.
contacts are not stored in files , they are stored in a database , you can use the content resolver to get that contact information.
http://developer.android.com/reference/android/content/ContentResolver.html
精彩评论