Android底部导航栏实现(一)之BottomNavigationBar

BottomNavigationBar这个控件的使用之前已经写过,这里不再赘述,详情请参考 BottomNavigationBar的使用

这里写图片描述

下面直接上代码:

 

初始化及相关设置:

mBottomNavigationBar = (BottomNavigationBar) view.findViewById(R.id.bottom_navigation_bar);
mBottomNavigationBar.setBackgroundStyle(BottomNavigationBar.BACKGROUND_STYLE_STATIC);
mBottomNavigationBar.setMode(BottomNavigationBar.MODE_FIXED);
mBottomNavigationBar.addItem(new BottomNavigationItem(R.drawable.home_fill, getString(R.string.item_home)).setInactiveIconResource(R.drawable.home).setActiveColorResource(R.color.colorPrimary).setInActiveColorResource(R.color.black_1))       
 .addItem(new BottomNavigationItem(R.drawable.location_fill, getString(R.string.item_location)).setInactiveIconResource(R.drawable.location).setActiveColorResource(R.color.colorPrimary).setInActiveColorResource(R.color.black_1))       
 .addItem(new BottomNavigationItem(R.drawable.like_fill, getString(R.string.item_like)).setInactiveIconResource(R.drawable.like).setActiveColorResource(R.color.colorPrimary).setInActiveColorResource(R.color.black_1))       
 .addItem(new BottomNavigationItem(R.drawable.person_fill, getString(R.string.item_person)).setInactiveIconResource(R.drawable.person).setActiveColorResource(R.color.colorPrimary).setInActiveColorResource(R.color.black_1))       
 .setFirstSelectedPosition(0)        
.initialise();
mBottomNavigationBar.setTabSelectedListener(this);

Tab的切换:

@Override 
public void onTabSelected(int position) { FragmentTransaction beginTransaction = getFragmentManager().beginTransaction(); 
switch (position) { 
case 0:
 if (mHomeFragment == null) {
 mHomeFragment = HomeFragment.newInstance(getString(R.string.item_home));
 } 
beginTransaction.replace(R.id.sub_content, mHomeFragment);
 break; 
case 1: if (mLocationFragment == null) {
 mLocationFragment = LocationFragment.newInstance(getString(R.string.item_location)); 
} 
beginTransaction.replace(R.id.sub_content, mLocationFragment); 
break; 
case 2: 
if (mLikeFragment == null) { 
mLikeFragment = LikeFragment.newInstance(getString(R.string.item_like)); } 
beginTransaction.replace(R.id.sub_content, mLikeFragment); 
break;
case 3: if (mPersonFragment == null) { 
mPersonFragment = PersonFragment.newInstance(getString(R.string.item_person)); 
} 
beginTransaction.replace(R.id.sub_content, mPersonFragment); 
} 
break;
beginTransaction.commit(); 
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值