我收到错误PlusClient.OnPersonLoadedListener cannot be resolved to a type。下面是我使用PlusClient.OnPersonLoadedListener的行。

public class MyActivity extends Activity implements ConnectionCallbacks,
        OnConnectionFailedListener, OnClickListener,
        PlusClient.OnPersonLoadedListener...


我已经完美地将google play services lib添加到了我的项目中。我可以这么说是因为我在Google Maps v2中使用了它,并且效果很好。

我也在行上得到错误loadPerson is undefined for type PlusClient

mPlusClient.loadPerson(this, "me");


并在行上显示错误remove @overridden

@Override
public void onPersonLoaded(ConnectionResult status, Person person) {...}


知道为什么我得到这个吗?

最佳答案

看来OnPersonLoadedListenerloadPerson不是函数/成员

http://developer.android.com/reference/com/google/android/gms/plus/PlusClient.html

OnPeopleLoadedListenerloadPeople

关于java - PlusClient.OnPersonLoadedListener无法解析为一种类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19087102/

10-10 02:16