Animated Bottom Bar


Source link: https://github.com/felixsoares/AnimatedBottomBar

How to animated bottom bar? here we go an example source code! thanks for developer.

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.

Resources

An extandable adapter which provides swipe to delete on your row item.

A View extended from WebView which is used to render math formula in latex using khanAcademy katex. In comparison with Mathjax, KhanAcademy katex renders much faster.

EasyNetwork - is powerful and easy-to-use http library for Android.

Features:

  • Functional "from the box": without mandatory primary configuration, anywhere in the code, functionally and simply.
  • Integration with Gson library.
  • There is a flexible functionality for hiding\showing\disabled the views, progress dialogs, swipeRefresh layout when the query is executed.
  • Visual logs.
  • Control tasks execution: cancel all tasks, cancel task by tag and other.
  • The ability to intercept the results of a request with certain parameters.
  • Separation of errors into: error (server) and failed (connection).
  • Handling the redirects.

Android Snooper is a HTTP inspector which leverages the interceptor mechanism provided by HTTP client and records all the HTTP calls made by the app. It then opens up an Activity to see the detailed history of HTTP calls made on onShake(When user shakes his device) event.

Session Cookie Reader.

Android menu option with expandable effect. What this lib can do:

  1. Menu will expand when user touch it and show menu options.
  2. You will get call back when user select menu.
  3. You can customize menu icons.
  4. Customize menu icon.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes