在 AsyncTask 中使用 ProgressDialog 时应用程序崩溃
Posted
技术标签:
【中文标题】在 AsyncTask 中使用 ProgressDialog 时应用程序崩溃【英文标题】:App crashes when using ProgressDialog within AsyncTask 【发布时间】:2019-09-08 13:05:45 【问题描述】:我的应用程序中有一个耗时的任务,需要几分钟才能完成。该任务是关于使用ORB算法进行图像匹配的,将图像查询与图库中的所有图像进行比较,然后将相似的图像返回给listView,由于该任务需要很长时间,我更喜欢使用Asynctask添加一个进度对话框。问题是当我按下搜索按钮时,进度对话框出现了很长时间,然后应用程序崩溃了,所以当进程完成时,应用程序似乎崩溃了,而不是隐藏进度对话框并在列表视图中显示结果。(知道代码在没有进度 Dialog 和 asynctask 的情况下正常工作)。我也尝试使用线程和同样的问题。任何帮助将不胜感激。提前致谢
搜索按钮代码:
searchButton.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
BackgroundTaskSearch task = new BackgroundTaskSearch(RGBtoGrey.this);
task.execute();
);
异步任务代码:
private class BackgroundTaskSearch extends AsyncTask <Void, Void, Void>
private ProgressDialog dialog;
public BackgroundTaskSearch(RGBtoGrey activity)
dialog = new ProgressDialog(activity);
@Override
protected void onPreExecute()
dialog.setMessage("Doing something, please wait.");
dialog.setCanceledOnTouchOutside(false);
dialog.show();
@Override
protected void onPostExecute(Void result)
if (dialog.isShowing())
dialog.dismiss();
/* try
dialog.dismiss();
catch (Exception e)
*/
@Override
protected Void doInBackground(Void... params)
search(); // Calling method of the long time task
return null;
locat: line (RGBtoGrey.java:1030) is dialog.show();在 onPreExecute() 和行 (RGBtoGrey.java:331) 是 task.execute();在搜索按钮动作中
search() 方法代码:
public void search()
Mat qmat = new Mat();
Mat jsonmat =null;
String q = qtag.getText().toString().trim();
if (!searchType.equals("byImage") && (q.isEmpty() || q.length() == 0 || q.equals("") || q == null))
Toast.makeText(getApplicationContext(), "Please insert image or tag", Toast.LENGTH_LONG).show();
else
if(!searchType.equals("byImage"))
DataBaseHandler db2 = new DataBaseHandler(getApplicationContext());
List<image> list = db2.getImages(q);
for (int i = 0; i < list.size(); i++)
imageList.add(list.get(i));
if (imageList.size() != 0 && imageList.size() > 1)
t.setText(Integer.toString(imageList.size()) + " images found");
if (imageList.size() != 0 && imageList.size() == 1)
t.setText(Integer.toString(imageList.size()) + " image found");
if (imageList.size() == 0)
t.setText("No result");
adapter.notifyDataSetChanged();
if (TYPE.equals("gallery"))
BitmapFactory.Options bmOptions = new BitmapFactory.Options();
Bitmap qbitmap0 = BitmapFactory.decodeFile(picPath, bmOptions);
Bitmap qbitmap = getRotated(qbitmap0, picPath);
Mat qmatRGB = new Mat();
Utils.bitmapToMat(qbitmap, qmatRGB);
Imgproc.cvtColor(qmatRGB, qmat, Imgproc.COLOR_RGB2GRAY);
org.opencv.core.Size s = new Size(3, 3);
Imgproc.GaussianBlur(qmat, qmat, s, 2);
if (TYPE.equals("camera"))
Mat qmatRGB = new Mat();
Utils.bitmapToMat(photo, qmatRGB);
Imgproc.cvtColor(qmatRGB, qmat, Imgproc.COLOR_RGB2GRAY);
org.opencv.core.Size s = new Size(3, 3);
Imgproc.GaussianBlur(qmat, qmat, s, 2);
ArrayList<String> pathArray = getFilePaths();
DataBaseHandler db = new DataBaseHandler(getApplicationContext());
List<mat> matlist =db.getAllMats();
FeatureDetector detector = FeatureDetector.create(FeatureDetector.ORB);
MatOfKeyPoint keypoints1 = new MatOfKeyPoint();
detector.detect(qmat, keypoints1);
DescriptorExtractor extractor = DescriptorExtractor.create(DescriptorExtractor.ORB);
Mat descriptors1 = new Mat();
extractor.compute(qmat, keypoints1, descriptors1);
for (int i = 0; i < pathArray.size(); i++)
BitmapFactory.Options bmOptions1 = new BitmapFactory.Options();
Bitmap bitmap0 = BitmapFactory.decodeFile(pathArray.get(i).toString(), bmOptions1);
Bitmap bitmap = getRotated(bitmap0, pathArray.get(i).toString());
Mat mat = new Mat();
Mat matRGB = new Mat();
Utils.bitmapToMat(bitmap, matRGB);
Imgproc.cvtColor(matRGB, mat, Imgproc.COLOR_RGB2GRAY);
org.opencv.core.Size s2 = new Size(3, 3);
Imgproc.GaussianBlur(mat, mat, s2, 2);
mat m =matlist.get(i);
String smat = m.getMat();
String smatkey = m.getMatimage();
Mat descriptors2 = matFromJson(smat);
Mat keypoints2 = keypointsFromJson(smatkey);
DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMING);
MatOfDMatch matches = new MatOfDMatch();
matcher.match(descriptors1, descriptors2, matches);
List<DMatch> matchesList = matches.toList();
List<DMatch> matches_final = new ArrayList<DMatch>();
for (int j = 0; j < matchesList.size(); j++)
if (matchesList.get(j).distance <= DIST_LIMIT)
matches_final.add(matches.toList().get(j));
List<MatOfDMatch> matcheslis = new ArrayList<MatOfDMatch>();
matcher.knnMatch(descriptors1, descriptors2,
matcheslis, 2);
ArrayList<KeyPoint> objectPoints = new ArrayList<KeyPoint>(), imagePoints = new ArrayList<KeyPoint>();
for (MatOfDMatch match : matcheslis)
DMatch[] dmatches = match.toArray();
if (dmatches.length == 2
&& dmatches[0].distance < dmatches[1].distance * 0.75)
imagePoints
.add(keypoints1.toArray()[dmatches[0].queryIdx]);
objectPoints
.add(((MatOfKeyPoint) keypoints2).toArray()[dmatches[0].trainIdx]);
float ratio = ((float) objectPoints.size())
/ ((float) keypoints2.size().width);
// ration>=12
if (ratio >= 16 || matches_final.size() >= 147)
image Image = new image();
Image.setImageURL(pathArray.get(i).toString());
Image.setGoodMatches(matches_final.size());
Image.setRatio(ratio);
imageList.add(Image);
for (int k = 0; k < imageList.size(); k++)
if (imageList.get(k).getImageURL().equals(picPath))
imageList.remove(k);
if (imageList.size() != 0 && imageList.size() > 1)
t.setText(Integer.toString(imageList.size()) + " images found");
if (imageList.size() != 0 && imageList.size() == 1)
t.setText(Integer.toString(imageList.size()) + " image found");
if (imageList.size() == 0)
t.setText("No result");
adapter.notifyDataSetChanged();
【问题讨论】:
发布堆栈跟踪 你是在更新搜索方式的ui吗?贴出完整代码和logcat给出的错误 Unfortunately MyApp has stopped. How can I solve this?的可能重复 @NicolaGallazzi 是的,我正在更新搜索方法中的 ui,这是问题吗? 什么是 RGBtoGrey 类? ProgressDialog 需要activity的上下文,同: public BackgroundTaskSearch(MainActivity activity) dialog = new ProgressDialog(activity); 【参考方案1】:据我从您的代码中可以看出,您正尝试在 doInBackground
方法中更新您的 UI。 doInBackground
在工作线程中运行,而在 android 中,您只能在 main 线程中更新 UI。在doInBackground
方法中完成您的长期工作,但在主线程方法中更新您的用户界面,例如onProgressUpdate
或onPostExecute
。更多关于 asynctask 的信息here
【讨论】:
非常感谢 Nicola,我正在更新 doInBackground 中的 UI,而不是 adapter.notifydatasetchnage 我设置了 textview 但一开始我没有注意,所以当我删除了所有更新从 doInBackground 到主线程(如 onPostExecute)的 UI 可以 100% 工作,再次非常感谢以上是关于在 AsyncTask 中使用 ProgressDialog 时应用程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章
在 AsyncTask 中使用 getSupportFragmentManager()
AsyncTask - 如何在AsyncTask中使用带有postDelayed(Runnable,int)的Handler?
在 Asynctask 中使用 Thread.sleep 时出错