大家好,我有一个应用程序,它通过单击按钮将一些文件存储到 sdcard,但我想显示它正在下载或下载的指示。
如何实现这一点我可以使用进度条。
这是我的按钮代码
case R.id.dd:
File sdcard = Environment.getExternalStorageDirectory();
File dir = new File (sdcard.getAbsolutePath() + "/varun");
dir.mkdirs();
File file = new File(dir, "" +var+ ".mp3");
// File file = new File(Environment.getExternalStorageDirectory(), "" +ver+ ".mp3");
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
fos.write(bitmapdata);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
// handle exception
} catch (IOException e) {
// handle exception
}