我收到错误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) {...}
知道为什么我得到这个吗?
最佳答案
看来OnPersonLoadedListener
和loadPerson
不是函数/成员
http://developer.android.com/reference/com/google/android/gms/plus/PlusClient.html
是OnPeopleLoadedListener
和loadPeople
关于java - PlusClient.OnPersonLoadedListener无法解析为一种类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19087102/