All Projects β†’ steelkiwi β†’ IndicatorView

steelkiwi / IndicatorView

Licence: other
Configurable view for ViewPager

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to IndicatorView

flutter dribble login challenge
A flutter animation UI challenge.
Stars: ✭ 51 (+24.39%)
Mutual labels:  animations
react-bones
πŸ’€ Dead simple content loading components for React and React-Native. πŸ’€
Stars: ✭ 42 (+2.44%)
Mutual labels:  animations
vuenode-fullstack
Vue.Js & Node fullstack Single Page Application with Relational databases as backend using Sequelize. Live Demo:
Stars: ✭ 42 (+2.44%)
Mutual labels:  animations
VinylShop
https://dribbble.com/shots/4996346-Vinyl-Shop-mobile-app
Stars: ✭ 30 (-26.83%)
Mutual labels:  animations
particle-animations
Animate your iOS app with particle systems
Stars: ✭ 14 (-65.85%)
Mutual labels:  animations
Material-BottomBarLayout
πŸŽ‰A material navigation bar library which has pretty animations and different ways of arrangement.
Stars: ✭ 56 (+36.59%)
Mutual labels:  animations
Editly
Slick, declarative command line video editing & API
Stars: ✭ 3,162 (+7612.2%)
Mutual labels:  animations
AnimationBuilder
A simple and easy-to-use wrapper class to deal with iOS animations.
Stars: ✭ 18 (-56.1%)
Mutual labels:  animations
Wortuhr ESP8266
Wortuhr mit ESP8266 WeMos D1 mini und NeoPixel WS2812B LEDs mit mp3 Sounds, Animationen, Transitions, Events und Spiele
Stars: ✭ 33 (-19.51%)
Mutual labels:  animations
dynamic-motion
Provide additional functionality to Android MotionLayout.
Stars: ✭ 34 (-17.07%)
Mutual labels:  view-pager
MainScreenShow
AndroidοΌŒεŠ¨ζ€ε£ηΊΈοΌŒι”ε±εŠ¨η”»οΌŒζ₯η”΅η§€η­‰γ€‚ζ‘Œι’η§€ι›†ζ­€δΊŽδΈ€θΊ«γ€‚
Stars: ✭ 77 (+87.8%)
Mutual labels:  animations
flip view
A Flutter app with flip animation to view profiles of friends. 🌟
Stars: ✭ 69 (+68.29%)
Mutual labels:  animations
DearPyGui Animate
DearPyGui_Animate is an add-on to bring DearPyGUI to life.
Stars: ✭ 34 (-17.07%)
Mutual labels:  animations
Flutter-animations
A collection of Animations that aims to improve the user experience for your next flutter project.
Stars: ✭ 137 (+234.15%)
Mutual labels:  animations
SSComposeCookBook
A Collection of major Jetpack compose UI components which are commonly used.πŸŽ‰πŸ”πŸ‘Œ
Stars: ✭ 386 (+841.46%)
Mutual labels:  animations
Pathanimator
Moves a DOM element along an SVG path (or do whatever along a path...)
Stars: ✭ 251 (+512.2%)
Mutual labels:  animations
helium-animated-pages
A light spiritual succesor to neon-animated-pages using only css animations
Stars: ✭ 17 (-58.54%)
Mutual labels:  animations
VanGogh
πŸ’₯ Android view animations powered by RxJava 2
Stars: ✭ 95 (+131.71%)
Mutual labels:  animations
manim
A community-maintained Python framework for creating mathematical animations.
Stars: ✭ 12,657 (+30770.73%)
Mutual labels:  animations
pycairo-animations
Pycairo Animation Library
Stars: ✭ 19 (-53.66%)
Mutual labels:  animations

IndicatorView

Made in SteelKiwi Android Arsenal

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:

compile 'com.steelkiwi:indicator-view:1.0.0'

Usage

Add IndicatorView to your xml layout

<steelkiwi.com.library.view.IndicatorView
    android:id="@+id/indicator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    app:iv_bar_color="@android:color/black"
    app:iv_corner_radius="@dimen/radius"
    app:iv_idle_color="@color/item_idle_color"
    app:iv_select_color="@color/item_select_color"
    app:iv_size="@dimen/item_size"
    app:iv_text_color="@android:color/white"
    app:iv_text_size="@dimen/text_size"
    app:iv_action="hang_down"
    app:iv_item_amount="6"/>

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

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].