底部导航栏中间加按钮的简单解决

先看效果图:


底部导航栏中间加按钮的简单解决_第1张图片

其实实现方法非常多,我就用了一种最偷懒的方法
导航栏就用普通布局实现的,不用radiobutton,不用bootmnavigationbutton,就正常的布局:
上面加了framelayout 是为了给fragment占位





    

        


        

        

    

    

        

        

        

    





    


然后在activity中:
其实就是两个按钮切换时候改变文字颜色更换图标,然后切换fragment屏蔽掉中间按钮点击事件,在fragment写个透明的imagebutton,然后设置点击事件就行了,这样看起来即使切换页面点击事件不一样了,按钮没变


底部导航栏中间加按钮的简单解决_第2张图片
底部导航栏中间加按钮的简单解决_第3张图片

可以看到点击按钮弹得吐司

FragmentManager fr = getSupportFragmentManager();
        FragmentTransaction ft = fr.beginTransaction();
        centerfragment = new CenterFragment();
        ft.add(R.id.oa_fragment,centerfragment).hide(centerfragment).commit();

        Lj_but.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                isOA = 1;
                addrenwu_bt.setClickable(true);
                FragmentManager fr = getSupportFragmentManager();
                FragmentTransaction ft = fr.beginTransaction();
                ft.hide(centerfragment).commit();

                Lj_text.setTextColor(getResources().getColor(R.color.white));
                Lj_icon.setImageResource(R.drawable.tab_renwuguanli_pre);
//                Lj_but.setBackgroundResource(R.color.tab1);

//                OA_but.setBackgroundResource(R.color.tab2);
                OA_icon.setImageResource(R.drawable.tab_oaofficework_nor);
                OA_text.setTextColor(getResources().getColor(R.color.tab1));
            }
        });

        OA_but.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                isOA = 2;
                addrenwu_bt.setClickable(false);
                FragmentManager fr2 = getSupportFragmentManager();
                FragmentTransaction ft2 = fr2.beginTransaction();
                ft2.show(centerfragment).commit();


//                OA_but.setBackgroundResource(R.color.tab1);
                OA_icon.setImageResource(R.drawable.tab_oaofficework_pre);
                OA_text.setTextColor(getResources().getColor(R.color.white));

                Lj_text.setTextColor(getResources().getColor(R.color.tab1));
                Lj_icon.setImageResource(R.drawable.tab_renwuguanli_nor);
//                Lj_but.setBackgroundResource(R.color.tab2);
            }
        });

demo地址:https://github.com/PangHaHa12138/BootmButtonDemo

你可能感兴趣的:(底部导航栏中间加按钮的简单解决)