gpt4 book ai didi

java - 调用 onResponse 时应用程序崩溃

转载 作者:行者123 更新时间:2023-12-01 16:53:03 26 4
gpt4 key购买 nike

我正在使用 volley 加载 JSON 数据。

这是MainActivity

public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {

private final String TAG = "MainActivity";


//Creating a list of posts
private List<PostItems> mPostItemsList;

//Creating Views
private RecyclerView recyclerView;
private RecyclerView.Adapter adapter;
private RecyclerView.LayoutManager layoutManager;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d(TAG, "Device rotated and onCreate called");

//Initializing Views
recyclerView = (RecyclerView) findViewById(R.id.post_recycler);
layoutManager = new LinearLayoutManager(this);
recyclerView.setLayoutManager(layoutManager);


//Initializing the postlist
mPostItemsList = new ArrayList<>();
adapter = new PostAdapter(mPostItemsList, this);

recyclerView.setAdapter(adapter);

if (NetworkCheck.isAvailableAndConnected(this)) {
//Caling method to get data
getData();
} else {
final Context mContext;
mContext = this;
final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
alertDialogBuilder.setTitle("No Internet Connection");
alertDialogBuilder.setMessage("Failed to load. Please ensure you're connected to the internet and try again.");
alertDialogBuilder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (!NetworkCheck.isAvailableAndConnected(mContext)) {
alertDialogBuilder.show();
} else {
getData();
}


}
});
alertDialogBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();

}
});
alertDialogBuilder.show();

}

}

//This method will get data from the web api
private void getData(){

Log.d(TAG, "getData called");
//Showing progress dialog
final ProgressDialog progressDialog = ProgressDialog.show(this, null, "Loading posts", false, false);

//Creating a json request
JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(ConfigPost.GET_URL,
new Response.Listener<JSONArray>() {
@Override
public void onResponse(JSONArray response) {
Log.d(TAG, "onResponse called");
//Dismissing the progress dialog
progressDialog.dismiss();


//calling method to parse json array
parseData(response);

}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {

}
});

//Creating request queue
RequestQueue requestQueue = Volley.newRequestQueue(this);

//Adding request to the queue
requestQueue.add(jsonArrayRequest);
}


}

如果应用程序启动并且我不旋转它,它会很好地加载和解析 JSON;但如果应用程序启动并且我多次旋转设备,应用程序就会崩溃 onResponse被调用。

这是堆栈跟踪

04-03 12:46:10.493 22221-22221/com.example.poster D/MainActivity: Device rotated and onCreate called
04-03 12:46:10.493 22221-22221/com.example.poster D/MainActivity: getData called
04-03 12:46:11.234 22221-22221/com.example.poster D/MainActivity: Device rotated and onCreate called
04-03 12:46:11.234 22221-22221/com.example.poster D/MainActivity: getData called
04-03 12:46:12.675 22221-22221/com.example.poster D/MainActivity: Device rotated and onCreate called
04-03 12:46:12.685 22221-22221/com.example.poster D/MainActivity: getData called
04-03 12:46:14.096 22221-22221/com.example.poster D/MainActivity: Device rotated and onCreate called
04-03 12:46:14.096 22221-22221/com.example.poster D/MainActivity: getData called
04-03 12:46:15.278 22221-22221/com.example.poster D/MainActivity: Device rotated and onCreate called
04-03 12:46:15.288 22221-22221/com.example.poster D/MainActivity: getData called
04-03 12:46:15.448 22221-22221/com.example.poster D/MainActivity: onResponse called
04-03 12:46:15.448 22221-22221/com.example.poster E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.poster, PID: 22221
java.lang.IllegalArgumentException: View=com.android.internal.policy.impl.PhoneWindow$DecorView{7873bab V.E..... R......D 0,0-480,174} not attached to window manager
at android.view.WindowManagerGlobal.findViewLocked(WindowManagerGlobal.java:396)
at android.view.WindowManagerGlobal.removeView(WindowManagerGlobal.java:322)
at android.view.WindowManagerImpl.removeViewImmediate(WindowManagerImpl.java:116)
at android.app.Dialog.dismissDialog(Dialog.java:341)
at android.app.Dialog.dismiss(Dialog.java:324)
at com.example.poster.MainActivity$4.onResponse(MainActivity.java:142)
at com.example.poster.MainActivity$4.onResponse(MainActivity.java:137)
at com.android.volley.toolbox.JsonRequest.deliverResponse(JsonRequest.java:65)
at com.android.volley.ExecutorDelivery$ResponseDeliveryRunnable.run(ExecutorDelivery.java:99)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5910)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200)

从堆栈跟踪中,第 142 行是 progressDialog.dismiss();第 137 行是 new Response.Listener<JSONArray>() {

知道可能是什么原因造成的及其解决方案吗?

更新:我正在考虑对其进行编码,以便仅在第一次创建应用程序时才调用 getData() 。这是因为,当配置更改(在本例中为轮换)后重新创建 Activity 时,会调用 getData()。因此这会导致 Activity 重新加载。这可能吗? IE。仅在第一次创建 Activity 时调用 getData()。

最佳答案

当应用旋转时,activity 会重新创建。现在您已经获得了 ProgressDialog progressDialog 的实例。因此,当 Activity 旋转时,旧 Activity 会被销毁,因此此实例 progressDialog 也会被销毁。

现在,任务正在后台线程上运行,当它返回时,它找不到 progressDialog,因为它已被销毁,因此当前未附加到窗口管理器(IllegalArgumentException)。

因此,在访问实例 progressDialog 之前,最好先检查它 onResponse

尝试像这样使用ProgressDialog:

定义一个全局实例:私有(private)ProgressDialog进度对话框;

getData方法中:

private void getData(){

Log.d(TAG, "getData called");
//Showing progress dialog
progressDialog = new ProgressDialog(MainActivity.this);
progressDialog.setMessage("Loading posts");
progressDialog.show();

onResponse回调中:

if(progressDialog!=null){
progressDialog.hide();
}

onDestroy Activity :

if(progressDialog!=null) progressDialog.dismiss(); // to prevent memory leak

关于java - 调用 onResponse 时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36385303/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com