user1365836
user1365836

Reputation: 350

Android PlusOneButton

I'm trying to make plusone button works inside my android app.

I did this:

m_plusClient = new PlusClient(this, this, this);

Then:

m_plusOneButton = (PlusOneButton) m_view.findViewById(R.id.plus_one_button);
m_plusOneButton.initialize(((SinglePlace)getActivity()).m_plusClient, url, 0);

Button is there, but if I click it, it shows an indefinite progress bar and does nothing. No callbacks are called on plus client...

Upvotes: 0

Views: 1123

Answers (1)

coachingsessions.net
coachingsessions.net

Reputation: 11

You need to follow these steps first: https://developers.google.com/+/mobile/android/getting-started before you jump to +1 button section.

Upvotes: 1

Related Questions