一个增强 BottomNavigationView 的安卓库。

来源:互联网 发布:域名批量查询工具下载 编辑:程序博客网 时间:2024/06/04 20:04

BottomNavigationViewEx

项目地址:ittianyu/BottomNavigationViewEx
简介:An android lib for enhancing BottomNavigationView. 一个增强 BottomNavigationView 的安卓库。
更多:作者   提 Bug   
标签:
BottomNavigationView-底部导航栏-自定义控件-

BottomNavigationViewEx

An android lib for enhancing BottomNavigationView.

MIT License api 9+

About Us

天宇工作室

Features

MethodDescriptionenableAnimationEnable or disable click item animation(text scale and icon move animation in no item shifting mode). Default true.enableItemShiftingModeEnable the shifting mode for each item. It will has a shift animation for item if true. Otherwise the item text always be shown. Default true when item count > 3.enableShiftingModeEnable the shifting mode for navigation. It will has a shift animation if true. Otherwise all items are the same width. Default true when item count > 3.getBottomNavigationItemViewGet private mButton in mMenuView at positiongetBottomNavigationItemViewsGet private mButtons in mMenuViewgetCurrentItemGet the current checked item position.getIconAtGet icon at position.getItemCountGet item count.getItemHeightGet item height.getLargeLabelAtGet large label at position. Each item has tow label, one is large, another is small.getSmallLabelAtGet small label at position. Each item has tow label, one is large, another is small.getMenuItemPositionGet menu item position in menu. Return position if success, -1 otherwise.getOnNavigationItemSelectedListenerGet OnNavigationItemSelectedListener.setCurrentItemSet the current checked item.setIconMarginTopset margin top for icon.setIconSizeSet all item ImageView size.setIconSizeAtSet all item ImageView size which at position.setIconsMarginTopset margin top for all icons.setIconTintListSet item icon tint list.setIconVisibilityChange the visibility of icon.setItemBackgroundSet background of item.setItemHeightSet menu item height.setLargeTextSizeSet all item large TextView size. Each item has tow label, one is large, another is small. Small one will be shown when item state is normal. Large one will be shown when item checked.setSmallTextSizeSet all item small TextView size. Each item has tow label, one is large, another is small. Small one will be shown when item state is normal. Large one will be shown when item checked.setTextSizeSet all item large and small TextView size.setTextTintListSet item TextView color.setTextVisibilityChange the visibility of text.setTypefaceset Typeface for all item TextView.setupWithViewPagerThis method will link the given ViewPager and this BottomNavigationViewEx together so that changes in one are automatically reflected in the other. This includes scroll state changes and clicks.

Example

Style

Attention: Something wrong on Android 4.x

 

With ViewPager

Add ViewBadger

Adding to project

Sdk Version

compileSdkVersion >= 25

Importing to project

Example for Gradle:

Step 1. Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

compile 'com.github.ittianyu:BottomNavigationViewEx:1.2.1'

If you can access google maven https://maven.google.com. And SDK >= 26. You can try the new version.

compile 'com.github.ittianyu:BottomNavigationViewEx:1.2.3'

Manual:

Downloading BottomNavigationViewEx.java and copying it to you project.

Getting started

Adding a custom widget in xml :

<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx    android:id="@+id/bnve"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:layout_alignParentBottom="true"    android:background="@color/colorPrimary"    app:itemIconTint="@color/selector_item_color"    app:itemTextColor="@color/selector_item_color"    app:menu="@menu/menu_navigation_with_view_pager" />

Binding view in Activity:

BottomNavigationViewEx bnve = (BottomNavigationViewEx) findViewById(R.id.bnve);

Disable all animations

bnve.enableAnimation(false);bnve.enableShiftingMode(false);bnve.enableItemShiftingMode(false);

Custom text and icon size

bnve.setIconSize(widthDp, heightDp);bnve.setTextSize(sp);

Binding with ViewPager

// set adapteradapter = new VpAdapter(getSupportFragmentManager(), fragments);bind.vp.setAdapter(adapter);// binding with ViewPagerbind.bnve.setupWithViewPager(bind.vp);

Add badge view

  1. Add badge lib
     compile 'q.rorbin:badgeview:1.1.0'
  2. Bind bottom view

     // add badge addBadgeAt(2, 1); private Badge addBadgeAt(int position, int number) {     // add badge     return new QBadgeView(this)             .setBadgeNumber(number)             .setGravityOffset(12, 2, true)             .bindTarget(bind.bnve.getBottomNavigationItemView(position))             .setOnDragStateChangedListener(new Badge.OnDragStateChangedListener() {                 @Override                 public void onDragStateChanged(int dragState, Badge badge, View targetView) {                     if (Badge.OnDragStateChangedListener.STATE_SUCCEED == dragState)                         Toast.makeText(BadgeViewActivity.this, R.string.tips_badge_removed, Toast.LENGTH_SHORT).show();                 }             }); }

Other usage in BottomNavigationViewEx

You can see the demo.

Usage in BottomNavigationView

Other usage is the same as official BottomNavigationView. You can click here for detail.

ProGuard

If you are using ProGuard you might need to add the following option:

-keep public class android.support.design.widget.BottomNavigationView { *; }-keep public class android.support.design.internal.BottomNavigationMenuView { *; }-keep public class android.support.design.internal.BottomNavigationPresenter { *; }-keep public class android.support.design.internal.BottomNavigationItemView { *; }

References

The lib is based on BottomNavigationView in Support Library 25 design.

I found it was inflexible when I try in demo. For example, I can't change the current checked item by code. So I write a class extends it to provide some useful method.

You no need to worry about stability. Because I minimise modifying by reflecting.

Thanks

Thanks for Adrián Mouly | liaolintao.

License

MIT LicenseCopyright (c) 2017 ittianyuPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, 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 THESOFTWARE.
原创粉丝点击