این کدیه که توی onClickListener دکمه نوشتم :
کد:
@Override
public void onClick(View v) { DownloadManager downloadManager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(questionha.get(position).getQuestionDownLink()));
request.setTitle(questionha.get(position).getQuestionTitle());
request.setDescription("در حال دانلود");
//.setDestinationInExtealFilesDir(context, "", questionha.get(position).getQuestionDownFileName());
request.setDestinationInExtealPublicDir(Environment.DIRECTORY_DOWNLOADS, questionha.get(position).getQuestionDownFileName());
long enqueueId = downloadManager.enqueue(request);
}
برچسب:
نویسنده: کاوه محمدزادگان