- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在包含 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;
}
}
}
布局
最佳答案
您的错误消息意味着您在后台工作期间遇到异常。 AsyncTask
在 doInBackground()
方法中执行后台工作,因此问题出在 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/
我有一个像这样的 fragment 栈 F1 -> F2 -> F3 -> F4 -> F5 现在我需要删除 F2、F3、F4 fragment 。 我需要如果我从 F5 fragment 按下后退按
我需要帮助来理解以下场景的工作原理以及如何实现结果。 我有一个名为 ShoppingCart 的类。它有一个名为 addItemsToShoppingCartFromPreviousOrder 的方法
我有一个包含 ViewPager 的 fragment 。这个 ViewPager 显然是由其他 Fragments 填充的。 我的问题是,ViewPager 中的 Fragment 是否有任何方法(
所以我正在实现一个 FragmentActivity 并尝试添加一个 fragment ,但是我遇到了多个问题。我以前做过这个,实际上我使用的代码与上一个项目(它工作的地方)相同,但由于某种原因它在这
Closed. This question needs details or clarity。它当前不接受答案。
我想将 Android X fragment (androidx.fragment.app.Fragment) 转换为 Android native fragment (android.app.Fra
假设我有一个包含 10 列文本类型 (20) 的 SQLite 表。 ListFragment 将从数据库中提取 4 列并使用 SimpleCursorAdapter 显示在列表中。 选择后,List
我有一个对话框 fragment ,我为延迟初始化创建了一个类。当我显示对话框时,它显示正常。但是,当我关闭对话框时,它崩溃的原因是: fragment 与 fragment 管理器无关。 我也尝试过
我想在 View 分页器更改为 fragment 时刷新该 fragment 。 package com.mcivisoft.rcbeam; import android.os.Bundle; imp
我有一个名为的 Activity MainActivity 我在容器 R.id.mainContainer 中添加了 fragment “BenefitFragment”。 在 BenefitFrag
所以我有这个 ClientListView,效果很好,可以显示客户,我可以单击一个客户并在右侧获取他们的详细信息(在我的第二个 fragment 中)。由此处的布局定义: 这很好用,但后来我
我试过这段代码,但点击第一个 fragment 中的按钮并没有改变第二个 fragment 中的字符串值。 这是第一个 fragment 的 kotlin 文件。它有两个按钮,点击它们可以更改字符串值
我有以下情况:我打开 fragment A 和目标,通过按钮的单击事件转到 fragment B。当我在 fragment B 中并点击后退按钮(为了返回 fragment A) 我想将一些参数传递给
我制作了一个 NavigationDrawer fragment ,其中包含 Home、Settings、Feedback 等项目。 home 项在点击 home 时应该打开,home 是在应用程序启
我正在一个接一个地替换 2 个 fragment ,两个 fragment 都有不同的选项菜单。当我替换第二个 fragment 时,它也显示第一个 fragment 的菜单。 setHasOptio
我有问题: android.app.Fragment$InstantiationException: Unable to instantiate fragment ${packageName}.${a
我正在研究 fragment 转换。当我用第二个 fragment 替换第一个 fragment 时,它出现在第一个 fragment 的下方。我希望它移动到第一个 fragment 之上。我该怎么做
我在抽屉导航里总共有 12 个 fragment 。每个 fragment 都有 volley 方法。每个 fragment 都显示自己的 Volley 响应,除了 position = 1 和 po
我在我的 Activity 中使用了两个 fragment 。最初我将向 Activity 添加一个 fragment 。然后在第一个 fragment 中使用监听器我想用第二个 fragment 替
我正在实现一个“fragments-101”程序,当相应的按钮被点击时我会替换一个 fragment 。然而,下面的事情发生了: 为什么会这样?为什么初始 fragment 没有被完全替换?MainA
我是一名优秀的程序员,十分优秀!