gpt4 book ai didi

android - gridview fragment 中的 AsyncTask 意外退出

转载 作者:行者123 更新时间:2023-11-29 21:02:15 25 4
gpt4 key购买 nike

我在包含 Gridview 的 fragment 上使用 AsyncTask 只是为了显示图片库。在执行时,它意外退出为

threadid=10: thread exiting with uncaught exception (group=0x4001d5a0)

我将空白 Activity 与使用 TitlePageIndicator 和 ViewPager 作为基础的 fragment 一起使用我不知道我必须做什么替代方案,即使捕获的 Activity 和 gridview 不为空。请帮助我。

下面是我的基本 Activity 和 fragmentAdapter:

Activity :

public class DialogTestActivity extends FragmentActivity {

TestFragmentAdapter mAdapter;
ViewPager mPager;
PageIndicator mIndicator;
TitlePageIndicator indicator;
public static String [] tabSelection ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dialog);
getActionBar().setBackgroundDrawable(new ColorDrawable(Color.BLACK));
// tabSelection = getResources().getStringArray(R.array.tab_selection);
mAdapter = new TestFragmentAdapter(getSupportFragmentManager());
mPager = (ViewPager)findViewById(R.id.pager);
mPager.setAdapter(mAdapter);
indicator = (TitlePageIndicator) findViewById(R.id.indicator);
indicator.setViewPager(mPager);

}
}

fragment 适配器:

public class TestFragmentAdapter extends FragmentPagerAdapter implements
IconPagerAdapter{
protected static final String[] CONTENT = new String[] {
"This", "Is", "A", "Test" , "Too"
};

private int mCount = CONTENT.length;

public TestFragmentAdapter(FragmentManager fm) {
super(fm);
}

@Override
public int getIconResId(int index) {
// TODO Auto-generated method stub
return 0;
}

public static String weblink = "";
@Override
public Fragment getItem(int position) {
Fragment fragment = null;
switch(position){
case 0:
weblink = "https://spreadsheets.google.com/feeds/list/0AqFbGbqKGPjAdGNPdGUtQ3dlSmoydU45ZXd6cGE4eGc/1/public/basic?alt=json";
fragment = new DialogFragment();// <-- should be a new fragment that you use
break;
case 1:
weblink = "https://spreadsheets.google.com/feeds/list/0AqFbGbqKGPjAdGNPdGUtQ3dlSmoydU45ZXd6cGE4eGc/2/public/basic?alt=json";
fragment = new DialogFragment(); // <-- should be a new fragment that you use
break;
case 2:
weblink = "https://spreadsheets.google.com/feeds/list/0AqFbGbqKGPjAdGNPdGUtQ3dlSmoydU45ZXd6cGE4eGc/3/public/basic?alt=json";
fragment = new DialogFragment();
break;
case 3:
weblink = "https://spreadsheets.google.com/feeds/list/0AqFbGbqKGPjAdGNPdGUtQ3dlSmoydU45ZXd6cGE4eGc/4/public/basic?alt=json";
fragment = new DialogFragment();
break;
case 4:
weblink = "https://spreadsheets.google.com/feeds/list/0AqFbGbqKGPjAdGNPdGUtQ3dlSmoydU45ZXd6cGE4eGc/5/public/basic?alt=json";
fragment = new DialogFragment();
break;
}
return fragment;
}

@Override
public int getCount() {
return mCount;
}

@Override
public CharSequence getPageTitle(int position){
String title = "";
switch(position){
case 0:
title = "Fragment 1";
break;
case 1:
title = "Fragment 2";
break;
case 2:
title = "Fragment 3";
break;
case 3:
title = "Fragment 4";
break;
case 4:
title = "Fragment 5";
break;
}

return title;
}

public void setCount(int count){
if (count > 0 && count < 10){
mCount = count;
notifyDataSetChanged();
}
}


}

下面是我的锻炼代码:

package com.example.dialog;

import java.lang.ref.WeakReference;
import java.util.ArrayList;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.GridView;
import android.widget.AdapterView.OnItemClickListener;

public class DialogFragment extends Fragment {

private String weblink ;


public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
super.onCreateView(inflater, container, savedInstanceState);
View rootView = inflater.inflate(R.layout.photolistfragment, container, false);
GridView content = (GridView) rootView.findViewById(R.id.gridview);
content.setBackgroundColor(Color.BLACK);
setRetainInstance(true);
weblink = TestFragmentAdapter.weblink;
String[] execute = {weblink};
DownloadDialog asyncTask = new DownloadDialog(getActivity() , content);
asyncTask.execute(execute);
return rootView;
}


public class DownloadDialog extends AsyncTask<String, Void , String>{

GridView mGridView;
Activity activity;

public DownloadDialog(final Activity parent, GridView gv) {
//dialog = new ProgressDialog(parent);
this.mGridView=gv;
this.activity=parent;
}

@Override
protected void onPreExecute() {
super.onPreExecute();
}

@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
System.out.println(result);
try {
JSONObject json = new JSONObject(result);
JSONObject jsonData = json.getJSONObject("feed");
JSONArray jsonArray = jsonData.getJSONArray("entry");
ArrayList<DialogPic> ct = new ArrayList<DialogPic> ();
for(int i = 0 ; i < jsonArray.length() ; i++){
DialogPic dpDialogPic = new DialogPic ();
JSONObject jsD = jsonArray.getJSONObject(i);
JSONObject jsC = jsD.getJSONObject("content");
String jsV = jsC.get("$t").toString();
int length = jsV.length();
String urlString = jsV.substring(6, length);
dpDialogPic.setCode(urlString);
ct.add(dpDialogPic);
}
DialogPicAdapter itemAdapter = new DialogPicAdapter(activity.getApplicationContext(), R.layout.diapic_row, ct);
mGridView.setAdapter(itemAdapter);
mGridView.setCacheColorHint(0);
mGridView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> adapter, View v, int position, long id) {
//do something on click
DialogPic selectedDialogPic = (DialogPic) mGridView.getItemAtPosition(position);
Intent i = new Intent();
i.putExtra("dialog", selectedDialogPic.getCode() );
activity.setResult(-1, i); //-1 :result OK
activity.finish();
}
});
}catch (JSONException e) {
e.printStackTrace();
}
}

@Override
protected String doInBackground(String... uid) {
// submitAllBuildResult(uid[0]);
String result = new WebAccess().getGoogleDocs(uid[0]);
//String result = "";
return result;
}
}

}

布局

最佳答案

您的错误消息意味着您在后台工作期间遇到异常。 AsyncTaskdoInBackground() 方法中执行后台工作,因此问题出在 new WebAccess().getGoogleDocs(uid[0]); 调用中.

将其包装在 try-catch block 中并调查您到达那里的 Exception。我建议您调试 getGoogleDocs() 方法,它可能已损坏。

如果您只是偶尔遇到此错误,请在 try-catch block 中添加一些重试机制。 Web 操作的重试次数通常为 5。

关于android - gridview fragment 中的 AsyncTask 意外退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25719744/

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