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;
The two forms of obtaining project resources are:
1).Use libraries directly on JitPack;
2).Copy the project's GADownloadingView and associated resources;
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'
}
Copy the src/ui/GADownloadingView and res/values/attr.xml files directly into the appropriate directory
<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" />
mGADownloadingView = (GADownloadingView) findViewById(R.id.ga_downloading);
Start the animation;
Update progress;
The download fails, and the execution fails with some animation;
<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>
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;
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.