我正在使用凌空加载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()。这是因为,在更改配置(在这种情况下为轮换)后重新创建活动时,将调用getData()。因此,这将导致活动重新加载。这可能吗?即仅在第一次调用getData()时创建活动。
最佳答案
应用程序旋转时,将重新创建activity
。现在,您有了ProgressDialog
progressDialog
的实例。因此,当活动旋转时,旧活动将被销毁,因此该实例progressDialog
被销毁。
现在,该任务正在后台线程上运行,返回时,找不到progressDialog
,因为它已被破坏,因此当前为not attached to window manager
(IllegalArgumentException
)。
因此,最好在访问实例progressDialog
之前先检查实例onResponse
。
尝试像这样使用ProgressDialog
:
定义一个全局实例:private ProgressDialog 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
:if(progressDialog!=null) progressDialog.dismiss(); // to prevent memory leak
关于java - 调用onResponse时,应用崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36385303/