0

で開始するProgressDialogActivity、すべてが正しく機能します。ダイアログの戻るボタンを押して再開するActivityと、「ウィンドウトークンを追加できませんandroid.BindeProxy@b6483550は無効です、アクティビティは実行されていますか?」というエラーが表示されます。ProgressDialogこれを終了したいときに閉じてActivity、次にこれを開始したときにもう一度表示する方法はありActivityますか?

私のコード:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mFacebook = new Facebook(APP_ID);
    mAsyncRunner = new AsyncFacebookRunner(mFacebook);
    SessionStore.restore(mFacebook, this);
    setContentView(R.layout.login_view);
    mLoginButton = (LoginButton) findViewById(R.id.login);
    SessionEvents.addAuthListener(new SampleAuthListener());
    mLoginButton.init(this, mFacebook);
}

@Override
public void onResume () {
    super.onResume();
}

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

public class SampleAuthListener implements AuthListener {

    public void onAuthSucceed() {
        TheGaffer.this.progressDialog = ProgressDialog.show(TheGaffer.this, "Loading", "Please wait...");
        Bundle params = new Bundle();
        params.putString("fields", "name,id");
        mAsyncRunner.request("me", params, new LoginRequestListener());
    }

    public void onAuthFail(String error) {
        Toast.makeText(getApplicationContext(), error,
                Toast.LENGTH_LONG).show();
    }
}

public class LoginRequestListener implements RequestListener {

    public void onComplete(final String response, final Object state) {
        try {
            JSONObject jsonObjSend = new JSONObject();
            JSONObject json = Util.parseJson(response);
            final String fbid = json.getString("id");
            jsonObjSend.put("fbid", json.getString("id"));
            jsonObjSend.put("username", json.getString("name"));
            jsonObjSend.put("playerPhoto", "http://graph.facebook.com/"+ json.getString("id") +"/picture");
            HttpClient.SendHttpPost("/user_profiles/registerUser", jsonObjSend);
            TheGaffer.this.runOnUiThread(new Runnable() {
                public void run() {
                    if (TheGaffer.this.progressDialog != null) {
                        TheGaffer.this.progressDialog.dismiss();
                    }
                    Intent intent = new Intent(TheGaffer.this, TeamActivity.class);
                    intent.putExtra("fbid", fbid);
                    startActivity(intent);
                }
            });
        } catch (JSONException e) {
            Log.w("Facebook-Example", "JSON Error in response");
        } catch (FacebookError e) {
            Log.w("Facebook-Example", "Facebook Error: " + e.getMessage());
        }
    }

    public void onFacebookError(FacebookError e, final Object state) {
        Log.e("Facebook", e.getMessage());
        e.printStackTrace();
    }

    public void onFileNotFoundException(FileNotFoundException e,
                                        final Object state) {
        Log.e("Facebook", e.getMessage());
        e.printStackTrace();
    }

    public void onIOException(IOException e, final Object state) {
        Log.e("Facebook", e.getMessage());
        e.printStackTrace();
    }

    public void onMalformedURLException(MalformedURLException e,
                                        final Object state) {
        Log.e("Facebook", e.getMessage());
        e.printStackTrace();
    }
}

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)  
{
     if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0)
     {
        TheGaffer.this.progressDialog = null;
        finish();
        return true;
     }
    return super.onKeyDown(keyCode, event);
}

}

4

2 に答える 2

0

電話する必要があります

prgDialog.dismiss();

消したいとき。その後、このエラーは発生しません

于 2012-11-29T04:08:48.493 に答える
0

進行状況ダイアログが、既に閉じられているアクティビティに表示しようとしたために発生します。isFinished()ダイアログ、進行状況バーを表示する前に確認してください。

于 2012-11-29T04:20:31.243 に答える