Giter Site home page Giter Site logo

ihrthk / loadingeverywhere Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lsjwzh/maskeverywhere

0.0 2.0 0.0 408 KB

loadingeverywhere is a library which can make it easy to create a loading mask over any view.

License: Apache License 2.0

Java 100.00%

loadingeverywhere's Introduction

LoadingEverywhere Build Status

LoadingEverywhere is an Android library that makes it easy to create and manage a loading mask over any view.

LoadingEverywhere actively supports android versions 2.3 (gingerbread) and above.

Installing

###Maven Add the following maven dependency exchanging x.x.x for the latest release.

<dependency>
    <groupId>com.lsjwzh</groupId>
    <artifactId>loadingeverywhere</artifactId>
    <version>x.x.x</version>
</dependency>

###Gradle Add the following gradle dependency exchanging x.x.x for the latest release.

dependencies {
    compile 'com.lsjwzh:loadingeverywhere:x.x.x'
}

####Note that the latest release version is '2.0.5'

###Cloning First of all you will have to clone the library.

git clone https://github.com/lsjwzh/loadingeverywhere.git

Now that you have the library you will have to import it into Android Studio. In Android Studio navigate the menus like this.

File -> Import Project ...

In the following dialog navigate to LoadingEverywhere which you cloned to your computer in the previous steps and select the build.gradle.

Getting Started

###Base usage

####LoadingLayout

Ok lets start with your activities or fragments xml file. It might look something like this.

<com.lsjwzh.loadingeverywhere.LoadingLayout
    android:id="@+id/loading"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

Also in your activities onCreate() or your fragments onCreateView() you would want to wrap a LoadingLayout like this

LoadingLayout loadingLayout = LoadingLayout.wrap(findViewById(R.id.list));

LoadingLayout.wrap method can be called any where. Because LoadingLayout will replace the view's position until the view has been attach to view tree.

You can also use custom progressBar style in LoadingLayout like this:

LoadingLayout loadingLayout = LoadingLayout.wrap(findViewById(R.id.list),android.R.attr.progressBarStyleLarge);

####ProgressLayout ProgressLayout has the same usage as LoadingLayout above. Xml Define:

<com.lsjwzh.loadingeverywhere.ProgressLayout
    android:id="@+id/progress"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

code:

ProgressLayout progressLayout = ProgressLayout.wrap(findViewById(R.id.list));
ProgressLayout progressLayout = ProgressLayout.wrap(findViewById(R.id.list),android.R.attr.progressBarStyleLarge);

####MaskLayout

####OverlayLayout

ToDo List

  1. GenericStatusLayout
  2. animation support
  3. add more progressBar Style
  4. detail usage
  5. demo apk
  6. auto fit view‘s width and height
  7. button with loading

Contributing

Contributions are very welcome. Now that this library has grown in popularity i have a hard time keeping upp with all the issues while tending to a multitude of other projects as well as school. So if you find a bug in the library or want a feature and think you can fix it yourself, fork + pull request and i will greatly appreciate it!

I love getting pull requests for new features as well as bugs. However, when it comes to new features please also explain the use case and way you think the library should include it. If you don't want to start coding a feature without knowing if the feature will have chance of being included, open an issue and we can discuss the feature!

License

Copyright 2014 lsjwzh

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.

loadingeverywhere's People

Contributors

lsjwzh avatar

Watchers

James Cloos avatar zhangls 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.