【BottomBar】Android炫酷的底部切换

github地址:BottomBar

基本使用

效果图

app:bb_behavior="underNavbar" 效果 (默认) 
【BottomBar】Android炫酷的底部切换_第1张图片

app:bb_behavior="shifting" 
【BottomBar】Android炫酷的底部切换_第2张图片

* Step1:gradle*

dependencies {
    ...
    compile 'com.roughike:bottom-bar:2.0.2'
    ...
}

Step2:res/.xml

目录图: 
【BottomBar】Android炫酷的底部切换_第3张图片

布局中使用BottomBar

bottombar_sample_activity.xml



    
    
    

Step3:实现监听

首次选中的时候调用的方法。

bottomBar.setOnTabSelectListener(new OnTabSelectListener() {
    @Override
    public void onTabSelected(@IdRes int tabId) {
        switch (tabId) {
            case R.id.tab1:
                toast.setText("tab1");
                toast.show();
                break;
            case R.id.tab2:
                toast.setText("tab2");
                toast.show();
                break;
        }
    }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

当前的tab是tab3,如果再次点击tab3,就会调用这个方法。

bottomBar.setOnTabReselectListener(new OnTabReselectListener() {
    @Override
    public void onTabReSelected(@IdRes int tabId) {
        switch (tabId) {
            case R.id.tab1:
                toast.setText("onTabReSelected---tab1");
                toast.show();
                break;
            case R.id.tab2:
                toast.setText("onTabReSelected---tab2");
                toast.show();
                break;
        }
    }
});
  •  

xml属性

一般要设置背景色android:background="#ffffff",不然背景色回事默认的colorPrimary

BottomBar的属性 含义
app:bb_tabXmlResource= 给BottomBar设置布局
app:bb_behavior= shifting:只有当前tab才显示title;underNavbar:都显示title;shy:滑动隐藏
app:bb_activeTabAlpha= 当前tab的可见度
app:bb_inActiveTabAlpha= 其他tab的可见度
app:bb_activeTabColor= 当前tab的颜色(icon + title)
app:bb_inActiveTabColor= 其他tab的颜色(cion + title)
app:bb_titleTypeFace= tab的title的字体
app:bb_titleTextAppearance= tab的title的style(大小和加粗等)

BottomBar的tab的属性:

tab的属性 含义
barColorWhenSelected= 当tab被选中时整个BottomBar的颜色
id= tab的id
icon= tab的icon
title= tab的title
  •  

barColorWhenSelected

效果图

【BottomBar】Android炫酷的底部切换_第4张图片

tab



    
    
    ...

如何改变tab的颜色和字体?

【BottomBar】Android炫酷的底部切换_第5张图片

其中fonts/GreatVibes-Regular.otf在assets中,见下图: 
【BottomBar】Android炫酷的底部切换_第6张图片

滑动隐藏BottomBar

  • 往上滑动bottombar消失
  • 往下滑动bottombar出现

效果图:

【BottomBar】Android炫酷的底部切换_第7张图片

需要满足的条件

  • app:bb_behavior="shy|shifting"
  • 跟布局是CoordinatorLayout
  • 另一个控件具有滑动属性,比如NestedScrollView

XML中使用BottomBar

未读消息

类似于QQ的未读消息

效果图

【BottomBar】Android炫酷的底部切换_第8张图片

方法

方法 含义
tab3.setBadgeCount(5); 显示数量
tab3.removeBadge(); 移除数量
BottombarTab tab3 = bottomBar.getTabWithId(R.id.tab3);
tab3.removeBadge();

你可能感兴趣的:(Android)