# loaderviewlibrary
**Repository Path**: mirrors_donglua/loaderviewlibrary
## Basic Information
- **Project Name**: loaderviewlibrary
- **Description**: Library that enables TextView of ImageView to show loading animation while waiting for the text and image get loaded
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2026-02-14
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Loader View for Android
[](http://android-arsenal.com/details/1/4243)
## What It Is
Provide both TextView and ImageView the ability to show shimmer (animation loader) before any text or image is shown. Useful when waiting for data to be loaded from the network. Example below

## Features / Usage
1. Loader View for TextView defined in layout XML
```xml
```
2. Loader View for ImageView defined in layout XML
```xml
```
3. Define the % width of the TextView that shows the loading animation with `width_weight`
```xml
```
4. Define the % height of the TextView that shows the loading animation with `height_weight`
```xml
```
5. Define use gradient of the TextView or ImageView that shows the gradient with `use_gradient`
```xml
```
6. Setting the Text Style as BOLD would darken the loading shimmer
7. Other feature of TextView and ImageView is still applicable.
8. Reset and show shimmer (animation loader) again by calling the below API
```java
myLoaderTextView.resetLoader();
myLoaderImageView.resetLoader();
```
## Requirement
Android SDK API Version 16 and above.
## Importing the Library
On your module `build.gradle`, add
dependencies {
compile 'com.elyeproj.libraries:loaderviewlibrary:1.2.1'
}
## What's new in 1.2.1
1. Add ability to reset loaderShimmer as per point 8 in Feature section
2. Fix bugs related to orientation changes (gradient width not resized and shimmer non-stop animating)
## Licence
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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.