https://github.com/steelkiwi/indicatorview
Configurable view for ViewPager
https://github.com/steelkiwi/indicatorview
animation animations indicatorview java library view-pager
Last synced: 3 months ago
JSON representation
Configurable view for ViewPager
- Host: GitHub
- URL: https://github.com/steelkiwi/indicatorview
- Owner: steelkiwi
- Created: 2017-05-10T08:07:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T06:54:00.000Z (over 8 years ago)
- Last Synced: 2025-03-23T18:54:10.566Z (10 months ago)
- Topics: animation, animations, indicatorview, java, library, view-pager
- Language: Java
- Homepage: http://steelkiwi.com/
- Size: 1.34 MB
- Stars: 40
- Watchers: 7
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IndicatorView
[](http://steelkiwi.com/blog/)
[](https://android-arsenal.com/details/1/5781)
IndicatorView to highlight current viewpager position
## View

## Description
It's flexible and expandable component, no matter what amount of items you use it will always show items properly.
Also you have a possibility to customize it how you want and you can pick type of animation what you like, to show each item
## Download
Download via Gradle:
```gradle
compile 'com.steelkiwi:indicator-view:1.0.0'
```
## Usage
Add IndicatorView to your xml layout
```xml
```
You can customize view like you want, through this attributes
* app:iv_bar_color - background color for indicator bar
* app:iv_corner_radius - corner radius for each indicator item
* app:iv_idle_color - color for idle state of the items
* app:iv_select_color - color for selected state of the items
* app:iv_size - indicator item size
* app:iv_text_color - indicator item text color
* app:iv_text_size - indicator item text size
* app:iv_action - type of animation to show each item, by default hang_down (hang_down|look_up)
* app:iv_item_amount - visible items amount
Don`t forget to initialize IndicatorView and attach ViewPager to it
```java
IndicatorView indicator = (IndicatorView) findViewById(R.id.indicator);
ViewPager viewPager = (ViewPager) findViewById(R.id.viewPager);
indicator.attachViewPager(viewPager);
```
# License
```
Copyright © 2017 SteelKiwi, http://steelkiwi.com
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.
```