handleWindowVisibility:令牌 android.os.BinderProxy 没有活动

问题描述 投票:0回答:6

我有一个登录屏幕,成功登录后,它会完成并显示另一个包含用户信息的页面。
我读到了这篇文章以及这篇文章
我还阅读了很多有关如何扩展应用程序类的内容,但我仍然无法运行此代码。
您可以在下面找到我的代码,我也会解释该错误。

这就是我使用 Volley 调用 AsyncTask 的方式:
错误就像

no activity for token android.os.BinderProxy
,当我调用
startActivity(intent);
时就会出现。
我知道这个错误是因为活动被杀死,并且 Volley 响应后的 AsyncTask 想要使用被杀死的上下文,但我不知道如何修复它。

Util.request_function(
     activity,
     MainActivity.user_session,
     key_value,
     new VolleyCallback() {
          @Override
          public void onSuccess(JSONObject result, Context context) {

                 Activity activity = 
                 MyBaseActivity.myCustomApplication.getCurrentActivity();
                 Intent intent = new Intent(activity, SelfieCapture.class);
                 startActivity(intent);
                 finish();
          }
          @Override
          public void onError(String result) {

          }
});

我的接口如下:
VolleyCallback.java:

public interface VolleyCallback {
    void onSuccess(JSONObject result) throws JSONException;
    void onError(String result) throws Exception;
}

Util.java

public static void request_function(Context context, CognitoUserSession cognitoUserSession, Map<String, String> key_value, final VolleyCallback callback) {
        JSONObject jsonBody = new JSONObject();
        CustomJSONObjectRequest postRequest = new CustomJSONObjectRequest(Request.Method.POST,
                MainActivity.API_URL,
                null,
                response -> {
                   JSONObject jsonObject = (JSONObject) response;
                   //SoMe Stuff//
                   callback.onSuccess(null);
             }, error -> {
                   //Log Error//
             }){
                  @Override
                  public String getBodyContentType() {
                         return "application/json; charset=utf-8";
                  }

                  @Override
                  public Map<String, String> getHeaders() {
                  final Map<String, String> headers = new HashMap<>();
                  headers.put("Content-Type", "application/json");
                         return headers;
                  } 

                  @Override
                  public byte[] getBody() {
                         return jsonBody.toString().getBytes();
                  }
        };
     // Request added to the RequestQueue
     VolleyController.getInstance(context).addToRequestQueue(postRequest);

MyCustomApplication.java

public class MyCustomApplication extends Application {

    private Activity mCurrentActivity = null;

    public void onCreate() {
        super.onCreate();

    }

    public Activity getCurrentActivity() {
        return mCurrentActivity;
    }

    public void setCurrentActivity(Activity mCurrentActivity) {
        this.mCurrentActivity = mCurrentActivity;
    }
}

MyBaseActivity.java

public class MyBaseActivity extends Activity {
    public static MyCustomApplication myCustomApplication;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        myCustomApplication = (MyCustomApplication)this.getApplicationContext();
    }
    protected void onResume() {
        super.onResume();
        myCustomApplication.setCurrentActivity(this);
    }
    protected void onPause() {
        clearReferences();
        super.onPause();
    }
    protected void onDestroy() {
        clearReferences();
        super.onDestroy();
    }

    private void clearReferences(){
        Activity currActivity = myCustomApplication.getCurrentActivity();
        if (this.equals(currActivity))
            myCustomApplication.setCurrentActivity(null);
    }
}
java android android-studio android-asynctask android-volley
6个回答
9
投票

在某些情况下,我发现将 onCreatepersistentState 参数一起使用可能会导致问题:

    override fun onCreate(savedInstanceState: Bundle?, persistentState: PersistableBundle?) {
        super.onCreate(savedInstanceState, persistentState)
    }

onCreate 更改为仅使用 savedInstanceState 参数修复了该问题:

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
    }

6
投票

这段代码似乎是正确的,但我唯一的怀疑是,当您想在

startActivity(intent)
中打开新活动时,会发生错误。
因此,检查下一个名为
SelfieCapture.class
的已触发类,看看它是否也从
MyBaseActivity
扩展。
还要考虑到,当你想得到
currentActivity
时,如果你把它放进
onCreate
,你就会得到
null
。有关更多信息,请参阅了解 Activity 生命周期


2
投票

我不知道为什么和如何,但我所做的只是 构建 > 重建项目,然后在重建后,我只需文件 > 无效缓存/重新启动

然后我的活动就完美运行了......!


1
投票

就我而言,当我尝试通过 Intent extras 传递一个非常长的 JSON 字符串时,就会发生这种情况。 据我推断,通过额外的包传递一个非常大的值可能会在启动新意图时导致内存问题。 尝试使用共享首选项或可序列化对象在活动之间共享大量内容

希望有帮助!


0
投票

我在登录活动中收到此错误,因为我忘记打开模拟器互联网!我打开它就解决了。

我的意思是这个错误:令牌 android.os.BinderProxy 没有活动


0
投票

对于我的 flutter 应用程序,firebase 需要 SHA-1 指纹。我之前已经添加过它,但不知何故它已被更改,我只是将应用程序的新 SHA-1 指纹添加到 firebase android 应用程序中,然后它就可以工作了。希望有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.