Accessing Google APIsのガイドにうまく従いました。
その後、コードの一部をフラグメントに移動することにしました。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.gms.common.SignInButton
android:id="@+id/login_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:clickable="true"
android:onClick="googleLogin" />
</FrameLayout>
MainActivity では、GoogleApiClient オブジェクトの作成onCreate()
をgoogleLogin()
次のメソッドに移動しました。
public void googleLogin(View v) {
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Plus.API)
.addScope(Plus.SCOPE_PLUS_PROFILE)
.build();
mGoogleApiClient.connect();
}
ただし、メソッドが呼び出されることはありません(デバッガーで確認できるように)。
ここで何が問題なのですか? 現在のSignInButton実装のバグ ( onClick
XML 属性を無視)ですか?