web-dev-qa-db-ja.com

フラグメントのエラー:「ID 0のGoogleApiClientを既に管理しています」

最初にすべてが正常に機能します。2回目に起動すると、次のエラーが表示されます。

FATAL EXCEPTION: main
Process: ro.vrt.videoplayerstreaming, PID: 23662
Java.lang.IllegalStateException: Already managing a GoogleApiClient with id 0
   at com.google.Android.gms.common.internal.zzx.zza(Unknown Source)
   at com.google.Android.gms.common.api.internal.zzw.zza(Unknown Source)
   at com.google.Android.gms.common.api.GoogleApiClient$Builder.zza(Unknown Source)
   at com.google.Android.gms.common.api.GoogleApiClient$Builder.zze(Unknown Source)
   at com.google.Android.gms.common.api.GoogleApiClient$Builder.build(Unknown Source)
   at ro.vrt.videoplayerstreaming.Login.onCreateView(Login.Java:75)
   at Android.support.v4.app.Fragment.performCreateView(Fragment.Java:1974)
   at Android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.Java:1067)
   at Android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.Java:1252)
   at Android.support.v4.app.BackStackRecord.run(BackStackRecord.Java:738)
   at Android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.Java:1617)
   at Android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.Java:517)
   at Android.os.Handler.handleCallback(Handler.Java:739)
   at Android.os.Handler.dispatchMessage(Handler.Java:95)
   at Android.os.Looper.loop(Looper.Java:148)
   at Android.app.ActivityThread.main(ActivityThread.Java:5849)
   at Java.lang.reflect.Method.invoke(Native Method)
   at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:763)
   at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:653)

私のコードは次のとおりです。

public class Login extends Fragment implements
        GoogleApiClient.OnConnectionFailedListener,
        View.OnClickListener {

    private static final String TAG = "SignInActivity";
    private static final int RC_SIGN_IN = 9001;

    private GoogleApiClient mGoogleApiClient;
    private TextView mStatusTextView;
    private ProgressDialog mProgressDialog;

    private static String url;

    private static View view;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        if (view != null) {
            ViewGroup parent = (ViewGroup) view.getParent();
            if (parent != null)
                parent.removeView(view);
        }
        try {
            view = inflater.inflate(R.layout.activity_login, container, false);

            // Views
            mStatusTextView = (TextView) view.findViewById(R.id.status);

            // Button listeners
            view.findViewById(R.id.sign_in_button).setOnClickListener(this);
            view.findViewById(R.id.sign_out_button).setOnClickListener(this);
            view.findViewById(R.id.disconnect_button).setOnClickListener(this);

            // [START configure_signin]
            // Configure sign-in to request the user's ID, email address, and basic
            // profile. ID and basic profile are included in DEFAULT_SIGN_IN.
            GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
                    .requestEmail()
                    .build();
            // [END configure_signin]

            // [START build_client]
            // Build a GoogleApiClient with access to the Google Sign-In API and the
            // options specified by gso.
            mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
                    .enableAutoManage(getActivity()/* FragmentActivity */, this /* OnConnectionFailedListener */)
                    .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
                    .build();
            // [END build_client]

            // [START customize_button]
            // Customize sign-in button. The sign-in button can be displayed in
            // multiple sizes and color schemes. It can also be contextually
            // rendered based on the requested scopes. For example. a red button may
            // be displayed when Google+ scopes are requested, but a white button
            // may be displayed when only basic profile is requested. Try adding the
            // Scopes.PLUS_LOGIN scope to the GoogleSignInOptions to see the
            // difference.
            SignInButton signInButton = (SignInButton) view.findViewById(R.id.sign_in_button);
            signInButton.setSize(SignInButton.SIZE_STANDARD);
            signInButton.setScopes(gso.getScopeArray());
            // [END customize_button]
        } catch (InflateException e) {
            /* map is already there, just return view as it is */
        }
        super.onCreate(savedInstanceState);

        return view;
    }

    @Override
    public void onStart() {
        super.onStart();

        OptionalPendingResult<GoogleSignInResult> opr = Auth.GoogleSignInApi.silentSignIn(mGoogleApiClient);
        if (opr.isDone()) {
            // If the user's cached credentials are valid, the OptionalPendingResult will be "done"
            // and the GoogleSignInResult will be available instantly.
            Log.d(TAG, "Got cached sign-in");
            GoogleSignInResult result = opr.get();
            handleSignInResult(result);
        } else {
            // If the user has not previously signed in on this device or the sign-in has expired,
            // this asynchronous branch will attempt to sign in the user silently.  Cross-device
            // single sign-on will occur in this branch.
            showProgressDialog();
            opr.setResultCallback(new ResultCallback<GoogleSignInResult>() {
                @Override
                public void onResult(GoogleSignInResult googleSignInResult) {
                    //adaugat de mine sa porneacsa singur cererea de logare
                    signIn();
                    //fin
                    hideProgressDialog();
                    handleSignInResult(googleSignInResult);
                }
            });
        }
    }

    // [START onActivityResult]
    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        // Result returned from launching the Intent from GoogleSignInApi.getSignInIntent(...);
        if (requestCode == RC_SIGN_IN) {
            GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
            handleSignInResult(result);
        }
    }
    // [END onActivityResult]

    // [START handleSignInResult]
    private void handleSignInResult(GoogleSignInResult result) {
        Log.d(TAG, "handleSignInResult:" + result.isSuccess());
        if (result.isSuccess()) {
            // Signed in successfully, show authenticated UI.
            GoogleSignInAccount acct = result.getSignInAccount();
            mStatusTextView.setText(getString(R.string.signed_in_fmt, acct.getDisplayName() + " Your token " + acct.getId()));

            url = "http://grupovrt.ddns.net:81/index.php?token="+acct.getId();

            updateUI(true);
        } else {
            // Signed out, show unauthenticated UI.
            updateUI(false);
        }
    }
    // [END handleSignInResult]

    // [START signIn]
    private void signIn() {
        Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
        startActivityForResult(signInIntent, RC_SIGN_IN);
    }
    // [END signIn]

    // [START signOut]
    private void signOut() {
        Auth.GoogleSignInApi.signOut(mGoogleApiClient).setResultCallback(
                new ResultCallback<Status>() {
                    @Override
                    public void onResult(Status status) {
                        // [START_EXCLUDE]
                        updateUI(false);
                        // [END_EXCLUDE]
                    }
                });
    }
    // [END signOut]

    // [START revokeAccess]
    private void revokeAccess() {
        Auth.GoogleSignInApi.revokeAccess(mGoogleApiClient).setResultCallback(
                new ResultCallback<Status>() {
                    @Override
                    public void onResult(Status status) {
                        // [START_EXCLUDE]
                        updateUI(false);
                        // [END_EXCLUDE]
                    }
                });
    }
    // [END revokeAccess]

    @Override
    public void onConnectionFailed(ConnectionResult connectionResult) {
        // An unresolvable error has occurred and Google APIs (including Sign-In) will not
        // be available.
        Log.d(TAG, "onConnectionFailed:" + connectionResult);
    }

    private void showProgressDialog() {
        if (mProgressDialog == null) {
            mProgressDialog = new ProgressDialog(getActivity());
            mProgressDialog.setMessage(getString(R.string.loading));
            mProgressDialog.setIndeterminate(true);
        }

        mProgressDialog.show();
    }

    private void hideProgressDialog() {
        if (mProgressDialog != null && mProgressDialog.isShowing()) {
            mProgressDialog.hide();
        }
    }

    private void updateUI(boolean signedIn) {
        if (signedIn) {
            getView().findViewById(R.id.sign_in_button).setVisibility(View.GONE);
            getView().findViewById(R.id.sign_out_and_disconnect).setVisibility(View.VISIBLE);
        } else {
            mStatusTextView.setText(R.string.signed_out);

            getView().findViewById(R.id.sign_in_button).setVisibility(View.VISIBLE);
            getView().findViewById(R.id.sign_out_and_disconnect).setVisibility(View.GONE);
        }
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.sign_in_button:
                signIn();
                break;
            case R.id.sign_out_button:
                signOut();
                break;
            case R.id.disconnect_button:
                revokeAccess();
                break;
        }
    }
}

私が理解しているように、問題は次の行にあります。

 mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
         .enableAutoManage(getActivity()/* FragmentActivity */, this /* OnConnectionFailedListener */)
         .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
         .build();

0のidを明示的に渡そうとしました:

.enableAutoManage(getActivity() /* FragmentActivity */, 0, this /* OnConnectionFailedListener */)

しかし、それでもうまくいきませんでした。

私は何が欠けていますか?

58
diaconu liviu

FragmentstopAutoManage()メソッドでonPause()を呼び出す必要があります。

@Override
public void onPause() {
    super.onPause();
    mGoogleClient.stopAutoManage(getActivity());
    mGoogleClient.disconnect();
}
125
Sudara

FragmentstopAutoManage()メソッドで onPause() を呼び出す必要があります。

@Override
public void onPause() {
    super.onPause();

    mGoogleApiClient.stopAutoManage(getActivity());
    mGoogleApiClient.disconnect();
}
34
Adewale Balogun

今後の問題を回避するには

@Override
public void onStop() {
    super.onStop();
    if (mGoogleApiClient != null && mGoogleApiClient.isConnected()) {
        mGoogleApiClient.stopAutoManage((Activity) context);
        mGoogleApiClient.disconnect();
    }
}
19
nadafafif

同じFragmentに属する2つの異なるActivitysにログインボタンを配置すると、同様の問題に直面しました。

自動的に管理される各GoogleApiClientに異なるIDを割り当てることで、この問題を解決しました。

たとえば、Fragment 1では、GoogleApiClientオブジェクトを作成中にI を割り当て済みをIDとして使用します。

mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
                    .enableAutoManage(getActivity(), 0, this /* OnConnectionFailedListener */)
                    .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
                    .build();

Fragment 2で、GoogleApiClientオブジェクトを作成中にI assigned 1としてid:

mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
                    .enableAutoManage(getActivity(), 1, this /* OnConnectionFailedListener */)
                    .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
                    .build();
11
Arshak

enableAutoManageの公式ドキュメント はこう言います:

IDごとに許可される自動管理クライアントは常に1つだけです。 IDを再利用するには、最初に前のクライアントでstopAutoManage(FragmentActivity)を呼び出す必要があります。

コードは、clientIdパラメーターなしでenableAutoManageのバージョンを使用しているため、デフォルトで0に設定されています。以下では、clientId 0に対して複数の自動管理クライアントを使用する理由を説明します。

ログインフラグメントがFragmentActivityにアタッチされると、そのアクティビティにGoogleApiClientの新しいインスタンスの管理を開始するよう指示します。しかし、FragmentActivityが既にGoogleApiClientの別のインスタンスを管理している場合はどうでしょうか?そのとき、エラーが発生します。

この複数のGoogleApiClients-per-FragmentActivityの状況に至る可能性のあるシナリオがいくつかあります。

  • FragmentActivityには、ログインに加えてGoogleApiClientを作成し、FragmentActivityに管理を要求する別のフラグメントがあります。
  • FragmentActivity自体がGoogleApiClientを作成し、ログインフラグメントがFragmentActivityにアタッチされる前に管理を開始します。
  • たぶん、FragmentTransactionにLogin Fragmentを追加して、addToBackStackを呼び出します。次に、ユーザーがタップして戻り、後で何らかの形でログインフラグメントが再添付されます。この場合、重要なLogin Activityメソッドの呼び出しは、次のようにonCreateView-> onDestroyView-> onCreateViewです。

    fragment lifecycle diagram

Login.onCreateViewへの2番目の呼び出しは、FragmentActivityが2番目のGoogleApiClientを管理しようとするため、これは問題です。

私があなただったら、フラグメントではなくアクティビティでGoogleApiClientを作成することを真剣に検討します。次に、アクティビティでGoogleApiClientを必要とする作業を行うか、アクティビティからGoogleApiClientを取得した後、ログインフラグメントでそれを続行します。

private GoogleApiClient googleApiClient;

@Override
void onAttach(Activity activity) {
    super.onAttach(activity);
    googleApiClient = activity.getGoogleApiClient();
}

@Override
void onDetach() {
    super.onDetach();
    googleApiClient = null;
}
6
vlazzle

onCreate()ではなくonCreateView()mGoogleApiClientを初期化することをお勧めします。

@ vlazzleで指摘 のように、onCreateView()は、単一のActivityの存続期間中に複数回呼び出すことができます。

1
pauminku

次のように、フラグメントのstopAutoManage()メソッドでonDestroy()を呼び出す必要があります。

     @Override
        public void onDestroy() {
             super.onDestroy();
             mGoogleApiClient.stopAutoManage(getActivity());
             mGoogleApiClient.disconnect();
          }
0
Kishan Thakkar