我收到错误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
完美添加到我的项目中。我可以这样说,因为我将它用于谷歌地图v2并且工作正常。
我在第
行也遇到错误loadPerson is undefined for type PlusClient
mPlusClient.loadPerson(this, "me");
和错误remove @overridden
在
@Override
public void onPersonLoaded(ConnectionResult status, Person person) {...}
我知道为什么会这样做?
答案 0 :(得分:2)
看起来OnPersonLoadedListener
和loadPerson
不是函数/成员
http://developer.android.com/reference/com/google/android/gms/plus/PlusClient.html
OnPeopleLoadedListener
和loadPeople