About 2,970,000 results
Open links in new tab
  1. Android - How to download a file from a webserver

    In my app I am downloading a kml file from a webserver. I have set the permission for external storage and internet in my android manifest file. I am new to Android, your help is greatly …

  2. java - Download a file with Android, and showing the progress in a ...

    Jun 12, 2010 · For this I need a simple function that can download a file and show the current progress in a ProgressDialog. I know how to do the ProgressDialog, but I'm not sure how to …

  3. How to Download File Using DownloadManager in API 29 or …

    Sep 25, 2019 · As I am new in Android Development, I am trying to simple App using DownloadManager. Here is the code public class MainActivity extends AppCompatActivity …

  4. Android DownloadManager API - opening file after download?

    40 I am facing problem of opening downloaded file after successfull download via DownloadManager API. In my code:

  5. Manually install Gradle and use it in Android Studio

    Eric Over a year ago With android-studio 3.3, this won't work, unless you know exact hash, and put it under the hash dir. Mostafa Alayesh Over a year ago @EricWang First you can let …

  6. How do I download the Android SDK without downloading …

    May 29, 2016 · As of the moment, I am running a Windows 8.1 PC that does not have the storage or the RAM for a IDE like Android Studio or Eclipse. I want to download the Android SDK tools, …

  7. How to download file from URL in android? - Stack Overflow

    Jul 26, 2020 · What is the best way to download file from url. I try to use DownloadManager. But I cannot understand how to get Uri of downloaded file . Here is my code: file?.let { val uri = Uri.p...

  8. how to access downloads folder in android? - Stack Overflow

    112 I am new android, i'm making an app in which one can download files to downloads folder (using Download Manager). I can see pictures if i go to downloads folder in emulator. So if i …

  9. download - Android: where are downloaded files saved? - Stack …

    Mar 17, 2016 · Usually the DownloadManager handles downloads and the files are then accessed by requesting the file's uri fromthe download manager using a file id to get where file was …

  10. Write file to Download directory in Android - Stack Overflow

    Oct 21, 2023 · 0 Android 10 introduced scoped storage, which restricts how apps can access external storage. To make your code work across different Android versions, you should …