1

我正在使用 Asynctask 在我的 Android 应用程序中下载文件。由于文件大小通常很大,我在后台启动文件下载。没有进度条或任何显示,以便用户可以在下载过程中访问应用程序的其他部分。

文件下载完成后,我想通知用户他的文件已成功下载。

使用 onPostexecute() 方法会产生问题,因为下载过程开始时用户不再处于同一活动中。结果,我无法使用 onPostExecute() 中的警报对话框和通知,因为上下文存在问题。

我已将 Asynctask 的代码粘贴在下面。所以,请给我一个解决这个问题的方法。

class DownloadProcess extends AsyncTask<Void,Void,Void>{

        Context cxt;

        public DownloadProcess(Context context) {
            cxt=context;
        }


        @Override
        protected Void doInBackground(Void... arg0) {
             try {
                    String fileurl="http://www.bigfiles/" + filenm;
                    URL url = new URL(fileurl); 
                    HttpURLConnection c = (HttpURLConnection) url.openConnection();
                    c.setRequestMethod("GET");
                    c.setDoOutput(true);
                    c.connect();


                    Path = Environment.getExternalStorageDirectory() + "/download/";
                    File pth=new File(Path);
                    File file = new File(pth,filenm);
                    FileOutputStream fos = new FileOutputStream(file);

                    InputStream is = c.getInputStream();

                    byte[] buffer = new byte[1024];
                    int len1 = 0;
                    while ((len1 = is.read(buffer)) != -1) {
                        fos.write(buffer, 0, len1);
                    }
                    fos.close();
                    is.close();

                } catch (IOException e) {
                    Log.d("amit", "Error: " + e);
                }

            return null;
        }


        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);

            if (((Activity) AppDet.this).isFinishing() == false) {      
                AlertDialog.Builder builder = new AlertDialog.Builder(AppDet.this);
                builder.setMessage("The app download is complete. Please check " +Path+ " on your device and open the " + filenm+ " file downloaded");
                builder.setCancelable(true);
                builder.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.cancel();
                    }
                    });
                AlertDialog alert = builder.create();
                alert.show();
                MediaPlayer md=MediaPlayer.create(AppDet.this, R.raw.ding);
                md.start();
            }
            else {
                //Not sure what to do here
            }
        }
4

3 回答 3

2

改用 IntentService 怎么样……它有一个上下文,所以你可以使用通知……对话框很烦人,必须死

于 2013-02-02T15:42:04.707 回答
1

我认为你应该使用

AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());

在你的代码中

于 2013-02-02T15:37:59.373 回答
0

正如@QAMAR 指出的那样,将通知(不是警报弹出窗口,这是糟糕的用户体验)与应用程序上下文一起使用。

但是,在我们的应用程序中,我们显示了来自android.app.Service管理任务子集的通知(我们不会直接从 AsyncTask 将结果添加到 UI - 当您的活动生命周期结束时,它们可能会被杀死,这是一项服务更明确地控制服务及其子任务何时结束)

final NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setContentIntent(pendingIntent)
.setSmallIcon(<some drawable>)
.setWhen(System.currentTimeMillis())
.setAutoCancel(true)
.setContentTitle(<some internationalised message>)
.setContentText(<some internationalised subtitle>);

// Send the notification.
((NotificationManager) getSystemService(NOTIFICATION_SERVICE)).notify(<notification id>, builder.getNotification());

如果您需要异步任务的结果来影响您正在使用的活动,那么您需要绑定服务。我今天将深入研究这些内容,所以我会回复我的任何见解......

于 2013-02-02T15:47:48.543 回答