All Projects → Hamadakram → Justbar

Hamadakram / Justbar

Licence: apache-2.0
Just a bar

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Justbar

react-native-bottom-bar
Fully customizable BottomBar with unique design shape for React Native.
Stars: ✭ 74 (-37.29%)
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 (+3543.22%)
Mutual labels:  bottombar
Readablebottombar
Yet another material bottom bar library for Android
Stars: ✭ 977 (+727.97%)
Mutual labels:  bottombar
BottomNavygation
Bottom Navigation based on Bottom Navigation View from Android
Stars: ✭ 62 (-47.46%)
Mutual labels:  bottombar
Medusa
Android fragment stack controller
Stars: ✭ 395 (+234.75%)
Mutual labels:  bottombar
Chip Navigation Bar
An android navigation bar widget
Stars: ✭ 491 (+316.1%)
Mutual labels:  bottombar
Bottomnavbar
Easily add four tabbed bottom navigation bar in your activity.
Stars: ✭ 202 (+71.19%)
Mutual labels:  bottombar
Bottomify Navigation View
A nice looking Spotify like bottom navigation view
Stars: ✭ 97 (-17.8%)
Mutual labels:  bottombar
Sotabbar
Light way to add Fancy bottom bar 📲
Stars: ✭ 400 (+238.98%)
Mutual labels:  bottombar
Adaptablebottomnavigation
A simpler way for implementing the Bottom Navigation View on Android
Stars: ✭ 844 (+615.25%)
Mutual labels:  bottombar
IRBottomNavigationView
Floating Bottom Navigation/Tab System
Stars: ✭ 48 (-59.32%)
Mutual labels:  bottombar
BottomBar
仿京东底部栏重复选择刷新动画,还有普通的样式和 MaterialDesign 样式
Stars: ✭ 14 (-88.14%)
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 (+575.42%)
Mutual labels:  bottombar
BetterBottomBar
Fork of the BottomNavigationView from the design lib to allow for view state, accessibility and colorful animations
Stars: ✭ 33 (-72.03%)
Mutual labels:  bottombar
Alphatabsindicator
高仿微信底部状态栏的轻量级库,非MagicIndicator那么功能庞大,简化功能符合大多数BottomTabBar应用设计需求, Lightweight Library of high imitation WeChat bottom status bar
Stars: ✭ 1,086 (+820.34%)
Mutual labels:  bottombar
Fluidbottomnavigation Android
Fluid Bottom Navigation library for Android
Stars: ✭ 225 (+90.68%)
Mutual labels:  bottombar
Expandablebottombar
A new way to implement navigation in your app 🏎
Stars: ✭ 467 (+295.76%)
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 (+1065.25%)
Mutual labels:  bottombar
Lottiebottomnavbar
A Customisable bottom navbar with Lottie animation
Stars: ✭ 76 (-35.59%)
Mutual labels:  bottombar
Animatedbottombar
This library allows you to show bottom navigation quickly, simply and animated.
Stars: ✭ 24 (-79.66%)
Mutual labels:  bottombar

JustBar

Download

Grab via Gradle:

implementation 'com.irozon.justbar:justbar:1.0.1'

Usage

    <com.irozon.justbar.JustBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.irozon.justbar.BarItem
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:icon="@drawable/ic_search"
            app:radius="25dp" />
        .
        .
        .

    </com.irozon.justbar.JustBar>

BarItem - Child for JustBar:

Optional attributes for BarItem

    <com.irozon.justbar.BarItem
            android:id="@+id/barItem"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:selectedColor="@color/colorSelected"
            app:unSelectedColor="@color/colorUnselected"
            app:selectedIconColor="@color/colorIconSelected"
            app:unSelectedIconColor="@color/colorIconUnselected"
            app:selected="false"
            app:icon="@drawable/ic_search"
            app:radius="25dp" />
Attribute Desription
selectedColor Selected state color for the BarItem
unSelectedColor Unselected state color for the BarItem
selectedIconColor Selected state color for the icon
unSelectedIconColor Unselected state color for the icon
selected Initial selected or unselected state for BarItem`
icon Icon for BarItem
radius Radius for the BarItem

Action for BarItem:

    justBar.setOnBarItemClickListener(new OnBarItemClickListener() {
               @Override
               public void onBarItemClick(BarItem barItem, int position) {
                    // Your code here
               }
           });

Apps using JustBar

If you are using JustBar in your app and would like to be listed here, please let me know by email or opening a new issue!

Authors

Contribution

Pull requests are welcome! Feel free to browse through open issues to look for things that need work. If you have a feature request or bug, please open a new issue so i can track it.

Acknowledgments

Licence

Copyright 2018 Irozon, Inc.

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