如何获得用户的名字?

时间:2015-03-21 12:42:31

标签: android

我知道,其他人也问同样的问题,但答案对我不起作用。

我试过这个 以这种方式https://github.com/jehy/Android-GetOwnerInfo/blob/master/Android-get-owner-contact-info.java

 OwnerInfo i = new OwnerInfo(this);
    System.out.println(i.accountName);
    System.out.println(i.email);
    System.out.println(i.id);
    System.out.println(i.phone);
    System.out.println(i.name);

i.accountName为我提供了电子邮件,但其他所有邮件都是空的。

这个 以这种方式How to get the Android device's primary e-mail address

MyLoaderManager mLoaderManager = new MyLoaderManager(this);
getLoaderManager().initLoader(0, null, (LoaderCallbacks<Cursor>) this);

使用MyLoaderManager中链接的代码。

并与客户经​​理一起玩,但没有什么可以给我我的名字(或者我以错误的方式使用它们?)。但是像Vine,Pinterest或Twitter这样的其他应用程序可以在注册过程中向我提出我的名字,所以必须有办法。那么,他们是如何做到的?

0 个答案:

没有答案