LoadingEverywhere


Source link: https://github.com/lsjwzh/loadingeverywhere

LoadingEverywhere

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. 

Resources

IntentBuilder is a type safe way of creating intents and populating them with extras. Use them with your Activities and Services.

A button that shows custom drawables when entering a loading state.

Twitter Kit is a multi-module gradle project containing several Twitter SDKs including TweetComposer, TwitterCore, and TweetUi. It is built on the Fabric platform and uses many shared components.

This is An Easy Android Crash Handle Library. You can use it to collect crashes and store them on phone or send to server.

A customizable Android view which shows the current step of a given series. Its main purpose is to provide a contextual reference for paginated forms.

Reactive Awareness API Library for Android and RxJava

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes