Permalink
Please sign in to comment.
Showing
with
143 additions
and 17 deletions.
- +90 −2 README.md
- +29 −1 ahbottomnavigation/build.gradle
- +6 −7 ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java
- +1 −1 app/src/main/AndroidManifest.xml
- +7 −3 app/src/main/java/aurelhubert/com/ahbottomnavigation/{HomeActivity.java → DemoActivity.java}
- +8 −0 app/src/main/res/layout/activity_home.xml
- +2 −3 build.gradle
- BIN demo1.gif
- BIN demo2.gif
- BIN demo3.gif
- BIN demo4.gif
92
README.md
@@ -1,2 +1,90 @@ | ||
-# ahbottomnavigation | ||
-A library to reproduce the behavior of the Bottom Navigation guidelines from Material Design. | ||
+# AHBottomNavigation | ||
+A library to reproduce the behavior of the Bottom Navigation guidelines from Material Design (minSdkVersion=16). | ||
+ | ||
+# Demo | ||
+<img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo1.gif" width="278" height="492" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo2.gif" width="278" height="492" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo3.gif" width="278" height="492" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo4.gif" width="278" height="492" /> | ||
+ | ||
+# Features | ||
+ | ||
+* Follow the bottom navigation bar guidelines (https://www.google.com/design/spec/components/bottom-navigation.html) | ||
+* Add 3 to 5 items (with title, icon & color) | ||
+* Choose your style: Classic or colored navigation | ||
+* Add a AHBottomNavigationListener to detect tab selection | ||
+ | ||
+# How to? | ||
+ | ||
+## Gradle | ||
+```groovy | ||
+buildscript { | ||
+ repositories { | ||
+ jcenter() | ||
+ } | ||
+} | ||
+ | ||
+dependencies { | ||
+ compile 'com.aurelhubert:ah-bottom-navigation:0.1' | ||
+} | ||
+``` | ||
+## XML | ||
+```xml | ||
+<com.aurelhubert.ahbottomnavigation.AHBottomNavigation | ||
+ android:id="@+id/bottom_navigation" | ||
+ android:layout_width="match_parent" | ||
+ android:layout_height="wrap_content"/> | ||
+``` | ||
+ | ||
+## Activity/Fragment | ||
+```java | ||
+AHBottomNavigation bottomNavigation = (AHBottomNavigation) findViewById(R.id.bottom_navigation); | ||
+ | ||
+// Create items | ||
+AHBottomNavigationItem item1 = new AHBottomNavigationItem("Label One", R.drawable.ic_maps_place, Color.parseColor("#455C65")); | ||
+AHBottomNavigationItem item2 = new AHBottomNavigationItem("Label Two", R.drawable.ic_maps_local_bar, Color.parseColor("#00886A")); | ||
+AHBottomNavigationItem item3 = new AHBottomNavigationItem("Label Three", R.drawable.ic_maps_local_restaurant, Color.parseColor("#8B6B62")); | ||
+ | ||
+// Add items | ||
+bottomNavigation.addItem(item1); | ||
+bottomNavigation.addItem(item2); | ||
+bottomNavigation.addItem(item3); | ||
+ | ||
+// Change colors | ||
+bottomNavigation.setAccentColor(Color.parseColor("#F63D2B")); | ||
+bottomNavigation.setInactiveColor(Color.parseColor("#747474")); | ||
+ | ||
+// Use colored navigation with circle reveal effect | ||
+bottomNavigation.setColored(isChecked); | ||
+ | ||
+// Set listener | ||
+bottomNavigation.setAHBottomNavigationListener(new AHBottomNavigation.AHBottomNavigationListener() { | ||
+ @Override | ||
+ public void onTabSelected(int position) { | ||
+ // Do something cool here... | ||
+ } | ||
+}); | ||
+``` | ||
+## minSDK version | ||
+ | ||
+The current minSDK version is API level 16. | ||
+ | ||
+## Contributions | ||
+ | ||
+Feel free to create issues / pull requests. | ||
+ | ||
+## License | ||
+ | ||
+``` | ||
+BottomBar library for Android | ||
+Copyright (c) 2016 Iiro Krankka (http://github.com/roughike). | ||
+ | ||
+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. | ||
+``` |
30
ahbottomnavigation/build.gradle
13
ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java
2
app/src/main/AndroidManifest.xml
10
.../com/ahbottomnavigation/HomeActivity.java → .../com/ahbottomnavigation/DemoActivity.java
8
app/src/main/res/layout/activity_home.xml
5
build.gradle
BIN
demo1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN
demo2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN
demo3.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
0 comments on commit
4e6ab10