项目作者: mrasif

项目描述 :
Android Downloader Library
高级语言: Java
项目地址: git://github.com/mrasif/DownloaderLibrary.git
创建时间: 2018-07-20T17:55:59Z
项目社区:https://github.com/mrasif/DownloaderLibrary

开源协议:GNU General Public License v3.0

下载


DownloaderLibrary

A simple android Downloader Library. It is very easy to use, to use this library follow these steps.

For Gradle:

Step 1. Add it in your root build.gradle at the end of repositories:

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url 'https://jitpack.io' }
  5. }
  6. }

Step 2. Add the dependency:

  1. dependencies {
  2. implementation 'com.github.mrasif:DownloaderLibrary:v1.0.0'
  3. }

For Maven:

Step 1. Add the JitPack repository to your build file:

  1. <repositories>
  2. <repository>
  3. <id>jitpack.io</id>
  4. <url>https://jitpack.io</url>
  5. </repository>
  6. </repositories>

Step 2. Add the dependency:

  1. <dependency>
  2. <groupId>com.github.mrasif</groupId>
  3. <artifactId>DownloaderLibrary</artifactId>
  4. <version>v1.0.0</version>
  5. </dependency>

For SBT:

Step 1. Add the JitPack repository to your build.sbt file:

  1. resolvers += "jitpack" at "https://jitpack.io"

Step 2. Add the dependency:

  1. libraryDependencies += "com.github.mrasif" % "DownloaderLibrary" % "v1.0.0"

For Leiningen:

Step 1. Add it in your project.clj at the end of repositories:

  1. :repositories [["jitpack" "https://jitpack.io"]]

Step 2. Add the dependency:

  1. :dependencies [[com.github.mrasif/DownloaderLibrary "v1.0.0"]]

Add this in your layout xml file:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:gravity="center"
  8. tools:context=".MainActivity"
  9. android:orientation="vertical">
  10. <TextView
  11. android:id="@+id/tvProgress"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="0"></TextView>
  15. <Button
  16. android:id="@+id/btnDownloadNow"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:text="Download Now"></Button>
  20. </LinearLayout>

Add this in your activity java files:

  1. public class MainActivity extends AppCompatActivity implements View.OnClickListener, DownloadHandler {
  2. Button btnDownloadNow;
  3. TextView tvProgress;
  4. Downloader downloader;
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_main);
  9. btnDownloadNow=findViewById(R.id.btnDownloadNow);
  10. tvProgress=findViewById(R.id.tvProgress);
  11. btnDownloadNow.setOnClickListener(this);
  12. }
  13. @Override
  14. public void onClick(View v) {
  15. if (v.getId()==R.id.btnDownloadNow){
  16. startDownload();
  17. }
  18. }
  19. private void startDownload(){
  20. String url="https://www.w3schools.com/htmL/mov_bbb.mp4";
  21. File rootDir=new File(Environment.getExternalStorageDirectory()+"/DownloaderDemo");
  22. if (!rootDir.exists()){
  23. try{
  24. rootDir.mkdir();
  25. }catch (Exception e){}
  26. }
  27. File file=new File(rootDir+ "/"+"mov_bbb.mp4");
  28. downloader=new Downloader(this,url,file);
  29. downloader.start();
  30. }
  31. @Override
  32. public void onDownloadProgressShow() {
  33. Toast.makeText(this, "Download started.", Toast.LENGTH_SHORT).show();
  34. }
  35. @Override
  36. public void onDownloadProgressUpdate(int progress) {
  37. tvProgress.setText(String.valueOf(progress));
  38. }
  39. @Override
  40. public void onDownloadProgressDismiss(File file) {
  41. Toast.makeText(this, "Download finished: "+file.getAbsolutePath(), Toast.LENGTH_SHORT).show();
  42. }
  43. }

You are done.