0

I downloaded google+ sample.

But a error occured in source.

mPlusClient.loadPeople(LoginGLActivity.this, Person.Collection.VISIBLE);

Why printed red line on 'Person.Collection.VISIBLE' ?

4

1 回答 1

2

Person.Collection.VISIBLE 在 Google-play-service froyo(Rev. 12) 中有效。

Google-play-service Rev. 13 中的“Person”类发生了变化。改用这个:

mPlusClient.loadVisiblePeople(NewLoginActivity.this,null) 
于 2013-12-16T20:36:00.707 回答