android-download-manager Questions
1
I have implemented http server on raspberry device which has it own network without access to internet. Now, I am developing Xamarin.Android application which needs to download files stored on serv...
Procedure asked 8/10, 2019 at 13:11
7
As I am new in Android Development, I am trying to simple App using DownloadManager.
Here is the code
public class MainActivity extends AppCompatActivity implements ActivityCompat.OnRequestPermis...
Boomer asked 24/9, 2019 at 14:57
2
Solved
I am trying to imlement downloading and sharing PDF file for read by another PDF reader apps (DropBox, Drive PDF Reader or Adobe Reader) on Android using FileProvider way.
However, I keep getting ...
Blackmore asked 7/6, 2018 at 10:16
6
Solved
In my app you can download some files. I used the Android DownloadManager class for downloading. After the download is completed, it should show me a message that the file was downloaded. The probl...
Christiansen asked 10/11, 2012 at 12:18
3
Solved
In my app, I use DownloadManager to download a file from Firebase.
import static android.os.Environment.DIRECTORY_DOWNLOADS;
public class Physics extends AppCompatActivity {
PDFView pdfView;
Fireb...
Jeepers asked 6/12, 2020 at 4:51
6
Solved
Small question about the download manager in android.
It's the first time I'm working with it and have successfully downloaded multiple files and opened them. But my question is how do i check if t...
Colcothar asked 31/1, 2014 at 10:16
3
Solved
I successfully downloaded a pdf file using DownloadManager API in android.
Manifest permissions are set correctly.
File downloaded correctly.
But when it is tried to open it says "can't open fil...
Kirsch asked 16/7, 2014 at 18:58
2
Solved
Here is the code i am tring to do the same when i am downloading anything from webView in android.
webview.setDownloadListener { url, userAgent, contentDisposition, mimetype, l ->
val request ...
Ningsia asked 3/3, 2022 at 17:36
4
Solved
I am using download manager to download the file. The code for downloading the file is as follow.
private String DownloadData(Uri uri, View v, String textview) {
long downloadReference;
// C...
Hollie asked 11/1, 2018 at 22:20
4
I've been beating my head against this issue for quite awhile... I am updating an app that uses DownloadManger to do a simple task like downloading a file to the external storage public directory i...
Beaverboard asked 4/12, 2019 at 13:27
1
I am trying to download a video for offline in exoplayer, I want to show downloading progress inside an activity.
How can I bind to the DownloadService in exoplayer. so that I can update the curre...
Orangutan asked 16/5, 2020 at 16:42
1
Solved
I am trying to download my mp3 file and want to save it to internal storage at a specific location.
But every time my download is failing.
Logcat error message
01-01 08:36:09.295 154-748/android....
Oglethorpe asked 11/6, 2021 at 7:24
2
Solved
I want to download some audio files from the internet. I want to use downloadmanager to download this file but I don't know how to save these files to a specific internal storage location in androi...
Reubenreuchlin asked 10/6, 2021 at 10:55
1
Solved
I use flutter_downloader package. After complete download some files, my app closes automatically and disconnects from the android studio. Anyone help me to find solutions.
final status = await Pe...
Groggy asked 23/4, 2021 at 11:27
1
My Download Manager is not showing a notification icon in the status bar. The notification is their when you open all notifications but the icon is absent in the status bar so people cant tell at a...
Crain asked 20/8, 2019 at 16:56
4
Solved
I'm trying to develop app that show videos and you can Download it
i'm using Download Manager class but it didn't work, also it didn't give me any error :(
this is my download manager code:
publ...
Porch asked 6/5, 2016 at 22:33
2
Solved
This is my first time trying to implement DownloadManager and no matter what I try, I always get a notification saying "Download unsuccessful." I've looked at many other SO forums, a few tutorials,...
Buoyancy asked 10/12, 2019 at 4:29
2
Solved
I am using DownloadManager to download a bunch of files in my application. I am not able to figure out how to cancel the downloads which has been enqueued by downloadManager.
There are two possib...
Monaxial asked 28/12, 2012 at 17:29
3
I'm using Download Manger to download some multimedia files and categorize them. I'm also using Crashlytics and this is an error I frequently get on different devices and versions of Android:
java....
Fare asked 5/6, 2015 at 16:34
5
Solved
I'm using DownloadManager to download video files from a url.
The problem is if I use the default folder to download the file I can not see the video in the galery.
Also, If I try to use this met...
Natika asked 14/4, 2014 at 20:39
2
This is not working on Some Devices.
In Samsung Device they not allow to download file using Download manager.
I have already define permission in the manifest and also get RunTime Permission.
Do...
Wolfhound asked 6/2, 2020 at 9:15
3
I'm trying to download a file stored in Google Drive using android DownloadManager.
I get the sign in token from Google like following:
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(Goo...
Geode asked 20/7, 2020 at 9:16
4
I experienced strange problem with DownloadManager, download was successful but the file was not stored.
So this is my code:
try {
DownloadManager manager = (DownloadManager) context.getSystemSe...
Lucchesi asked 26/2, 2016 at 13:20
3
Downloading a file using the Android DownloadManager to the external storage fails on Samsung Galaxy S9, S9+ on Android 9 (Pie).
Download works for Samsung Devices with Android 8 or other devices ...
Bingaman asked 9/4, 2019 at 11:57
2
Downloading through download Manager in android sometimes does not download and throw error path appears to be invalid and it corrects itself after sometime. This is very unusual behaviour of Andro...
Baseball asked 28/1, 2019 at 7:7
1 Next >
© 2022 - 2025 — McMap. All rights reserved.