Coder Social home page Coder Social logo

gadownloading's Introduction

GADownloading

中文文档

1 Creative prototype:

The effect is shown below:


Through the code to achieve the effect is as follows:

State of success:


State of fail:



We have achieved most of the results, the rest to you, ha ha,😄;

Note:
1.The project does not use any image resources, most of the colors can be changed by custom attributes;
2.LoadingView will automatically adjust the width and height, the proposed width of not less than 100dp, otherwise ineffective;

2 How to Use:

2.1 How To Obtain Project Resources

The two forms of obtaining project resources are:
1).Use libraries directly on JitPack;
2).Copy the project's GADownloadingView and associated resources;

2.1.1 Use Libraries Directly On JitPack

step 1. In the project build.gradle add the following code:

allprojects {
		repositories {
			...
            // add the follow code
			maven { url 'https://jitpack.io' }
		}
	}

step 2. In the module's build.gradle add the following code:

dependencies {
	compile 'com.github.Ajian-studio:GADownloading:v1.0.2'
}

2.1.2 Copy The Project's Resouces

Copy the src/ui/GADownloadingView and res/values/attr.xml files directly into the appropriate directory

2.2 Add GADownloadingView To The Layout File

<xxx.xxx.xxxx.GADownloadingView
    android:id="@+id/ga_downloading"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/show_failed"
    android:layout_centerHorizontal="true" />

2.3 Find The View In The Activity

mGADownloadingView = (GADownloadingView) findViewById(R.id.ga_downloading);

2.4 Core Interface

2.4.1 performAnimation()

Start the animation;

2.4.2 updateProgress(int progress)

Update progress;

2.4.3 onFail():

The download fails, and the execution fails with some animation;

2.5 Custom Properties

2.5.1 You Can Change The Properties

    <declare-styleable name="GADownloadingView">

        <attr name="arrow_color" format="color" />
        <attr name="loading_circle_back_color" format="color" />
        <attr name="loading_line_color" format="color" />
        <attr name="progress_line_color" format="color" />
        <attr name="progress_text_color" format="color" />
        <attr name="done_text_color" format="color" />
    </declare-styleable>

2.5.2 How To Use Customize Properties

Add a custom property namespace:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:gastudio="http://schemas.android.com/apk/res-auto"
         ... ...
    />

Add some custom properties

    <com.gastudio.gadownloading.ui.GADownloadingView
        android:id="@+id/ga_downloading"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        gastudio:arrow_color="@android:color/white"
        gastudio:done_text_color="@android:color/white"
        gastudio:loading_circle_back_color="@android:color/white"
        gastudio:loading_line_color="@android:color/white"
        gastudio:progress_line_color="@android:color/white"
        gastudio:progress_text_color="@android:color/white" />

Finally, if you feel pretty good, please click the Star!

Welcome to join the GAStudio exchange qq group: 277582728;

License

Copyright 2016 GAStudio

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.

gadownloading's People

Contributors

ajian-studio avatar

Watchers

 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.