等待谷歌将照片请求放在AsyncTask中



我正在尝试了解如何将Asynctasks与其中的其他请求一起使用,因此我在AsyncTask中使用Google位置获取照片。

我得到的是,在处理请求时,Asynctask 在我获得照片之前完成,因此它是空的。

我认为问题是,在发出请求时,任务正在完成并继续执行代码的其余部分。

我的 AsyncTask 类是这样构建的:

private class AsyncPhotoBuilder extends AsyncTask<Integer, Integer, Bitmap[][]>{
ProgressBar pb;
int status = 0;
private void setProgressBar(ProgressBar progressBar){
this.pb = progressBar;
}
@Override
protected void onPostExecute(Bitmap[][] bitmaps) {
super.onPostExecute(bitmaps);
Log.d("debug", "onpost");
}
@Override
protected void onProgressUpdate(Integer... values) {
super.onProgressUpdate(values);
pb.setProgress(values[0]);
}
@Override
protected Bitmap[][] doInBackground(Integer... integers) {
try{
int xSize = 4, ySize = 4;
SharedPreferences prefs = getSharedPreferences(PHOTO_PREF, MODE_PRIVATE);
String meta = prefs.getString("meta", "empty");
if(!meta.equals("empty")){
int loc = meta.indexOf(photoref_loc);
String holder = meta.substring(loc+photoref_loc.length());
PhotoMetadata temp = PhotoMetadata.builder(holder.substring(0, holder.length()-1)).build();

FetchPhotoRequest photoRequest = FetchPhotoRequest.builder(temp)
.setMaxWidth(800) // Optional.
.setMaxHeight(800) // Optional.
.build();
//Starts a request for a photo
placesClient.fetchPhoto(photoRequest).addOnSuccessListener((fetchPhotoResponse) -> {
Photo_Bitmap.set(fetchPhotoResponse.getBitmap());
int width, height;
width = Photo_Bitmap.get().getWidth()/xSize;
height = Photo_Bitmap.get().getHeight()/ySize;
//Cuts photo into a 4x4
for(int i = 0; i < xSize; i++){
for(int j = 0; j < ySize; j++){
PuzzleList[i][j] = Bitmap.createBitmap(Photo_Bitmap.get(), i*width, j*height, width, height);
status++;
publishProgress(status);

}
}
//Once finished cutting photo raise flag.
ready_flag = true;
Log.d("debug", "finish");
}).addOnFailureListener((exception) -> {
if (exception instanceof ApiException) {
ApiException apiException = (ApiException) exception;
int statusCode = apiException.getStatusCode();
// Handle error with given status code.
Log.e("debug", "Photo not found: " + exception.getMessage());
}
});
}
}
catch (Exception e){
Log.d("Exception", "Error in splitting photo: " + e);
}
return PuzzleList;
}
}

据我所知,PostExecute发生在请求完成之前。 我尝试了几种方法:

1 使用 Asynctasks 的 get(( 函数

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/*
Code...
*/
asyncPhotoBuilder = new AsyncPhotoBuilder();
asyncPhotoBuilder.setProgressBar(progressBar);
asyncPhotoBuilder.execute(5000);
try{
PuzzleList = asyncPhotoBuilder.get(5000, TimeUnit.MILLISECONDS);
}
catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (TimeoutException e) {
e.printStackTrace();
}
/*
Code...
*/
}

但我认为它在请求之前完成任务时遇到了同样的问题。

<小时 />

当我写这篇文章时,我确实解决了我的问题。

我在请求 (ready_flag( 中设置了一个标志,该标志在请求完成后引发。

使用可运行对象检查任务是否完成以及标志已升起的时刻。

不确定这是否是我处理这个问题的最佳方式。

public Runnable Start = new Runnable() {
@Override
public void run() {
if(asyncPhotoBuilder.getStatus() == AsyncTask.Status.FINISHED && ready_flag){
Init_start();
}
hand.postDelayed(this, 0);
}
};

如果有更好的方法可以做到这一点,我喜欢学习。

谢谢!

相关内容

  • 没有找到相关文章

最新更新