1
A
回答
0
試試這個:
private String getUserProfileName()
{
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(Profile.CONTENT_URI, null, null, null, null);
while (cur.moveToNext())
{
int isUser = cur.getInt(cur.getColumnIndex(Profile.IS_USER_PROFILE));
if (isUser > 0)
{
isNewContact = false;
String name = cur.getString(cur.getColumnIndex(Profile.DISPLAY_NAME));
Log.e(TAG, "user profile name " + name);
cur.close();
return name;
}
}
Log.e(TAG, "no user profile found!");
cur.close();
isNewContact = true;
return null;
}
確保允許添加到您的AndroidManifest文件:android.permission.READ_PROFILE
相關問題
- 1. 如何從google + login android獲取個人資料信息?
- 2. 使用JavaScript API從LinkedIn獲取個人資料詳細信息
- 3. 從Android LinkedIn SDK獲取個人資料信息
- 4. 如何從Facebook API獲取用戶個人資料信息Android
- 5. 如何在rails中獲取linkedin個人資料信息?
- 6. Facebook獲取用戶的個人資料信息
- 7. Facebook API:獲取用戶個人資料的詳細信息
- 8. 如何從android應用程序中的twitter獲取個人資料信息?
- 9. Chrome身份識別API以獲取個人資料信息
- 10. 使用Angular2獲取用戶Auth個人資料信息Firebase
- 11. Facebook API,無法獲取名字和個人資料信息
- 12. Google SingIn in Swift獲取個人資料信息
- 13. Outlook Office 365 - 獲取完整個人資料詳細信息
- 14. 通過ASP.NET Membership.OpenAuth獲取用戶個人資料信息
- 15. 成功登錄Facebook後需要獲取個人資料信息
- 16. 如何獲取Instagram個人資料信息?
- 17. 如何獲取LinkedIn個人資料信息,然後默認信息Android
- 18. iOS - 無法從Google個人資料中獲取基本用戶信息
- 19. Google+ API檢索個人資料信息
- 20. PHP註冊個人資料信息
- 21. 如何在iPhone SDK中訪問我的個人資料信息?
- 22. 如何使用LinkedIn API獲取某人的個人資料信息
- 23. 用戶的帳戶信息和個人資料信息
- 24. 如何從OAuth2 Google API獲取電子郵件和個人資料信息?
- 25. 提取物的Twitter個人資料的報頭信息
- 26. 嘗試從用戶個人資料中刪除信息
- 27. 如何通過asp.net mvc 3中的userId獲取個人資料信息?
- 28. 如何在Django中獲取用戶的Google個人資料信息?
- 29. 沒有得到從linkedin的完整個人資料信息python
- 30. 如何在android中集成google plus並獲取個人資料信息?