Giter Site home page Giter Site logo

aria's Introduction

Aria

图标
下载不应该是让人感到痛苦的功能,Aria,致力于让下载傻瓜化。

  • Aria有以下特点:
  • 简单
  • 可自定义是否使用广播
  • 支持多线程、多任务下载
  • 支持任务自动切换
  • 支持下载速度直接获取

Aria怎样使用?

如果你觉得Aria对你有帮助,您的star和issues将是对我最大支持.^_^

下载

Download

compile 'com.arialyy.aria:Aria:2.3.2'

示例

多任务下载 单任务下载

性能展示

性能展示


使用

一、Aria 是实体驱动型的工具,所以,第一步,你需要创建一个下载实体

  DownloadEntity mEntity = new DownloadEntity();
  mEntity.setFileName(fileName);          //设置文件名
  mEntity.setDownloadUrl(downloadUrl);    //设置下载链接
  mEntity.setDownloadPath(downloadPath);  //设置存放路径

二、为了能接收到Aria传递的数据,你需要把你的Activity或fragment注册到Aria管理器中,注册的方式很简单,在onResume

@Override protected void onResume() {
    super.onResume();
    Aria.whit(this).addSchedulerListener(new MySchedulerListener());
  }

三、还记得上面的DownloadEntity吗?现在是时候使用它进行下载了

  • 启动下载

    Aria.whit(this).load(mEntity).start();
  • 暂停下载

    Aria.whit(this).load(mEntity).stop();
  • 恢复下载

    Aria.whit(this).load(mEntity).resume();
  • 取消下载

    Aria.whit(this).load(mEntity).cancel();

四、关于Aria,你还需要知道的一些东西

  • 设置下载任务数,Aria默认下载任务为2

    Aria.get(getContext()).setMaxDownloadNum(num);
  • 停止所有下载

    Aria.get(this).stopAllTask();
  • 设置失败重试次数,从事次数不能少于 1

    Aria.get(this).setReTryNum(10);
  • 设置失败重试间隔,重试间隔不能小于 5000ms

    Aria.get(this).setReTryInterval(5000);
  • 设置是否打开广播,如果你需要在Service后台获取下载完成情况,那么你需要打开Aria广播,Aria广播配置

    Aria.get(this).openBroadcast(true);

开发日志

  • v_2.1.0 修复大量bug
  • v_2.1.1 增加,选择最大下载任务数接口
  • v_2.3.1 重命名为Aria,下载流程简化

License

Copyright 2016 AriaLyy(https://github.com/AriaLyy/Aria)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

aria's People

Contributors

arialyy avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.