protected class

PlusOneButton.DefaultOnPlusOneClickListener

extends Object
implements PlusOneButton.OnPlusOneClickListener View.OnClickListener
java.lang.Object
   ↳ com.google.android.gms.plus.PlusOneButton.DefaultOnPlusOneClickListener

Class Overview

This is an View.OnClickListener that will proxy clicks to an attached PlusOneButton.OnPlusOneClickListener, or default to attempt to start the intent using an Activity context. Important: The implementation of onClick(android.view.View) used by DefaultOnPlusOneClickListener relies on the tag of this class' PlusOneButtonView remaining unused.

Summary

Public Constructors
PlusOneButton.DefaultOnPlusOneClickListener(PlusOneButton.OnPlusOneClickListener proxy)
Public Methods
void onClick(View view)
void onPlusOneClick(Intent intent)
Called when the +1 button is clicked.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.android.gms.plus.PlusOneButton.OnPlusOneClickListener
From interface android.view.View.OnClickListener

Public Constructors

public PlusOneButton.DefaultOnPlusOneClickListener (PlusOneButton.OnPlusOneClickListener proxy)

Parameters
proxy PlusOneButton.OnPlusOneClickListener

Public Methods

public void onClick (View view)

Parameters
view View

public void onPlusOneClick (Intent intent)

Called when the +1 button is clicked. Start the intent passed to this method to display the +1 confirmation dialog Activity with startActivityForResult(Intent, int).

Parameters
intent Intent: The intent to display the +1 confirmation dialog.