Activity did not call finish? (API 23)

后端 未结 8 1728
渐次进展
渐次进展 2020-12-08 06:47

I am getting the following error and i have no clue as to why its happening.

Error:

08-23 17:07:46.533  22454-22454/com.a.b.c E/Andr         


        
8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-08 07:36

    I found a workaround. Call setVisible(true) in onStart():

    @Override
    protected void onStart() {
        super.onStart();
        setVisible(true);
    }
    

提交回复
热议问题