All Projects → felixsoares → Animatedbottombar

felixsoares / Animatedbottombar

Licence: mit
This library allows you to show bottom navigation quickly, simply and animated.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Animatedbottombar

Lottiebottomnavbar
A Customisable bottom navbar with Lottie animation
Stars: ✭ 76 (+216.67%)
Mutual labels:  bottombar
BetterBottomBar
Fork of the BottomNavigationView from the design lib to allow for view state, accessibility and colorful animations
Stars: ✭ 33 (+37.5%)
Mutual labels:  bottombar
Sotabbar
Light way to add Fancy bottom bar 📲
Stars: ✭ 400 (+1566.67%)
Mutual labels:  bottombar
Material Bottomnavigation
Bottom Navigation widget component inspired by the Google Material Design Guidelines at https://www.google.com/design/spec/components/bottom-navigation.html
Stars: ✭ 1,375 (+5629.17%)
Mutual labels:  bottombar
Fluidbottomnavigation Android
Fluid Bottom Navigation library for Android
Stars: ✭ 225 (+837.5%)
Mutual labels:  bottombar
IRBottomNavigationView
Floating Bottom Navigation/Tab System
Stars: ✭ 48 (+100%)
Mutual labels:  bottombar
Readablebottombar
Yet another material bottom bar library for Android
Stars: ✭ 977 (+3970.83%)
Mutual labels:  bottombar
Chip Navigation Bar
An android navigation bar widget
Stars: ✭ 491 (+1945.83%)
Mutual labels:  bottombar
react-native-bottom-bar
Fully customizable BottomBar with unique design shape for React Native.
Stars: ✭ 74 (+208.33%)
Mutual labels:  bottombar
Medusa
Android fragment stack controller
Stars: ✭ 395 (+1545.83%)
Mutual labels:  bottombar
Justbar
Just a bar
Stars: ✭ 118 (+391.67%)
Mutual labels:  bottombar
Bottomnavbar
Easily add four tabbed bottom navigation bar in your activity.
Stars: ✭ 202 (+741.67%)
Mutual labels:  bottombar
BottomAppBar
Example project to show how to handle BottomAppBar
Stars: ✭ 19 (-20.83%)
Mutual labels:  bottombar
Bottomify Navigation View
A nice looking Spotify like bottom navigation view
Stars: ✭ 97 (+304.17%)
Mutual labels:  bottombar
Bottomnavigation
This Library helps users to use Bottom Navigation Bar (A new pattern from google) with ease and allows ton of customizations
Stars: ✭ 4,299 (+17812.5%)
Mutual labels:  bottombar
Alphatabsindicator
高仿微信底部状态栏的轻量级库,非MagicIndicator那么功能庞大,简化功能符合大多数BottomTabBar应用设计需求, Lightweight Library of high imitation WeChat bottom status bar
Stars: ✭ 1,086 (+4425%)
Mutual labels:  bottombar
BottomNavygation
Bottom Navigation based on Bottom Navigation View from Android
Stars: ✭ 62 (+158.33%)
Mutual labels:  bottombar
Animatedbottombar
A customizable and easy to use BottomBar navigation view with sleek animations, with support for ViewPager, ViewPager2, NavController, and badges.
Stars: ✭ 797 (+3220.83%)
Mutual labels:  bottombar
Expandablebottombar
A new way to implement navigation in your app 🏎
Stars: ✭ 467 (+1845.83%)
Mutual labels:  bottombar
BottomBar
仿京东底部栏重复选择刷新动画,还有普通的样式和 MaterialDesign 样式
Stars: ✭ 14 (-41.67%)
Mutual labels:  bottombar
This library allows you to show bottom navigation quickly, simply and animated.

AnimatedBottomBar

Please, have a test in google play clicking here.

Android Arsenal

Getting Started

Add it in your root build.gradle (Project module)

allprojects {
   repositories {
        ...
        maven { url 'https://jitpack.io' }
   }
}

Add the dependency in build.gradle (App module)

dependencies {
	implementation 'com.github.felixsoares:AnimatedBottomBar:1.1'
}

Usage example

In layout file

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <com.felixsoares.animatedbottombar.ui.BottomBar
            android:id="@+id/bottom"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            app:layout_constraintBottom_toBottomOf="parent"/>

</android.support.constraint.ConstraintLayout>

In Activity or Fragment

bottom
            .addItem(Item("Home", R.drawable.ic_home))
            .addItem(Item("Search", R.drawable.ic_search))
            .addItem(Item("Profile", R.drawable.ic_person))
            .build()

Documentation

  1. Support click listener.
import com.felixsoares.animatedbottombar.NavigationListner

class MainActivity : AppCompatActivity(), NavigationListner {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_default)

        bottom
            .setupListner(this)
            .addItem(Item("Home", R.drawable.ic_home))
            .addItem(Item("Search", R.drawable.ic_search))
            .addItem(Item("Profile", R.drawable.ic_person))
            .build()
    }

    override fun OnClick(position: Int) {
        Log.i("OnClick", "position $position")
    }
}
  1. Support multi color (layout).
<com.felixsoares.animatedbottombar.ui.BottomBar
            android:id="@+id/bottom"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            app:text_size="14sp"
            app:bg_color="#ec4f16"
            app:bg_icon_color="#a43fcc20"
            app:tint_icon_color="#191793"
            app:text_color="@color/colorPrimary"
            app:indicator_color="@color/colorAccent"/>

2.1) Support multi color (code).

bottom
            .setBgColor(android.R.color.black)
            .setBgIconColor(android.R.color.holo_blue_dark)
            .setIconColor(android.R.color.holo_green_dark)
            .setIndicatorColor(android.R.color.holo_red_dark)
            .setTextColor(android.R.color.holo_orange_dark)
            .setTextSize(12f)
            .addItem(Item("Home", R.drawable.ic_home))
            .addItem(Item("Search", R.drawable.ic_search))
            .addItem(Item("Profile", R.drawable.ic_person))
            .build()
  1. Add item by item.
bottom.addItem(Item("Home", R.drawable.ic_home))

3.1) Add list of Itens.

val list = mutableListOf<Item>()
list.add(Item("Home", R.drawable.ic_home))
list.add(Item("Search", R.drawable.ic_search))
list.add(Item("Profile", R.drawable.ic_person))

bottom
		.setupItens(list)
		.build()
  1. Support itens with text or icons.
bottom
		.addItem(Item("Home", R.drawable.ic_home))
		.addItem(Item("Search", R.drawable.ic_search))
		.addItem(Item(R.drawable.ic_notifications_gray, R.drawable.ic_notifications))

MIT License

Copyright (c) 2019 Felix Soares

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].