An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# IndicatorView

[![Made in SteelKiwi](https://github.com/steelkiwi/IndicatorView/blob/master/assets/made_in_steelkiwi.png)](http://steelkiwi.com/blog/)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-IndicatorView-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/5781)

IndicatorView to highlight current viewpager position

## View

![](https://github.com/steelkiwi/IndicatorView/blob/master/assets/indicator_view_hung_down_action.gif)

## 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.
```