elye / loaderviewlibrary
- вторник, 30 августа 2016 г. в 03:13:38
Java
Library that enables TextView of ImageView to show loading animation while waiting for the text and image get loaded
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
Loader View for TextView defined in layout XML
<com.elyeproj.loaderviewlibrary.LoaderTextView
android:layout_width="match_parent"
android:layout_height="wrap_content" />
Loader View for ImageView defined in layout XML
<com.elyeproj.loaderviewlibrary.LoaderImageView
android:layout_width="100dp"
android:layout_height="100dp" />
Define the % width of the TextView that shows the loading animation with width_weight
<com.elyeproj.loaderviewlibrary.LoaderTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:width_weight="0.4" />
Define the % height of the TextView that shows the loading animation with height_weight
<com.elyeproj.loaderviewlibrary.LoaderTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:height_weight="0.4" />
Setting the Text Style as BOLD would darken the loading shimmer
Other feature of TextView and ImageView is still applicable.
Android SDK API Version 16 and above.
On your module build.gradle
, add
dependencies {
compile 'com.elyeproj.libraries:loaderviewlibrary:1.0.3'
}
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.