Android底部导航实现的简便方法RadioGroup+Fragment

转载请注明:https://mp.csdn.net/mdeditor/82504849

底部导航栏RadioGroup+Fragemt(界面不能滑动切换,只能点击)

1.首先在drawable中新建选择器selector文件,在drawable右键点击New->Drawable Resourse File,分别创建文字颜色选择器selector_text,和另外四个图片选择器selector_home_drawable,selector_phone_drawable,selector_find_drawable,selector_personal_drawable。选择器顾名思义就是点击后会改变颜色或者是图片

selector_text

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:color="#cdcdcd"/>
    <item android:state_checked="true" android:color="#d4237a"/>
</selector>

selector_home_drawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:drawable="@drawable/home"/>
    <item android:state_checked="true" android:drawable="@drawable/home_selected"/>
</selector>

selector_phone_drawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:drawable="@drawable/phone"/>
    <item android:state_checked="true" android:drawable="@drawable/phone_selected"/>

</selector>

selector_find_drawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:drawable="@drawable/find"/>
    <item android:state_checked="true" android:drawable="@drawable/find_selected"/>

</selector>

selector_personal_drawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:drawable="@drawable/personal"/>
    <item android:state_checked="true" android:drawable="@drawable/personal_selected"/>

</selector>
2.然后创建activity_main.xml布局文件,里面主要由RadioGroup和Fragment构成。Fragment主要布局导航各部分的主要内容,RadioGroup布局底部导航。

1)在创建布局文件前,由于四个RadioButton有很多相同的属性,在这里我们将共同的属性提取成style,在values的styles中写好RadioButton的style,即tab_menu_item

styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    
    <style name="tab_menu_item">
        <item name="android:layout_width">0dp</item>
        <item name="android:layout_weight">1</item>
        <item name="android:layout_height">match_parent</item>
        <item name="android:background">@color/white</item>
        <item name="android:button">@null</item>
        <item name="android:gravity">center</item>
        <item name="android:paddingTop">3dp</item>
        <item name="android:textColor">#cdcdcd</item>
        <item name="android:textSize">15sp</item>
    </style>

</resources>

2) 开始创建activity_main.xml布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
   >
    <RadioGroup
        android:id="@+id/radio_group"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_alignParentBottom="true"
        android:background="#fff"
        android:orientation="horizontal">

        <RadioButton
            android:id="@+id/rd_home"
            style="@style/tab_menu_item"
            android:drawableTop="@drawable/selector_home_drawable"
            android:text="首页"
            android:textColor="@drawable/selector_text"/>
        <RadioButton
            android:id="@+id/rd_phone"
            style="@style/tab_menu_item"
            android:drawableTop="@drawable/selector_phone_drawable"
            android:text="通讯录"
            android:textColor="@drawable/selector_text"/>
        <RadioButton
            android:id="@+id/rd_find"
            style="@style/tab_menu_item"
            android:drawableTop="@drawable/selector_find_drawable"
            android:text="发现"
            android:textColor="@drawable/selector_text"/>
        <RadioButton
            android:id="@+id/rd_personal"
            style="@style/tab_menu_item"
            android:drawableTop="@drawable/selector_personal_drawable"
            android:text="个人"
            android:textColor="@drawable/selector_text"/>

    </RadioGroup>

    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/radio_group"
        />

</RelativeLayout>
3.接着再创建四个fragment布局文件,这里我只贴出其中一个Fragment,其他三个只是改变text,便于观察是哪个Fragment
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:text="发现"
        android:textSize="20sp" />

</LinearLayout>
4. 四个fragment布局文件创建完成后,再创建四个Fragment类,HomeFragment和HomeFragment,PhoneFragment,PersonalFragment,均继承android.support.v4.app.Fragment;这里我也只贴出一个Fragemnt的代码,其他三个都与这个类似,只是改变R.layout.fragment_find,改成对应的layout名字即可;
public class FindFragment  extends Fragment{
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState){
        View view=inflater.inflate(R.layout.fragment_find,container,false);
        return view;
    }
}
需注意最好继承android.support.v4.app.Fragment,不然会出现其他不适应问题。
5.最后我们在MainActivity中开始布局渲染,需注意的是图片一般会偏大造成图片和文字所占比例有些奇怪,故在代码中做了图片的优化。
public class MainActivity extends AppCompatActivity implements RadioGroup.OnCheckedChangeListener {

    private RadioButton homeRb, phoneRb, findRb, personalRb;
    private RadioGroup mRadioGroup;
    private HomeFragment mHomeFragment;
    private PhoneFragment mPhoneFragment;
    private PersonalFragment mPersonalFragment;
    private FindFragment mFindFragment;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();
    }

    private void initView() {
        mRadioGroup = findViewById(R.id.radio_group);
        mRadioGroup.setOnCheckedChangeListener(this);
        homeRb = findViewById(R.id.rd_home);
        phoneRb = findViewById(R.id.rd_phone);
        findRb = findViewById(R.id.rd_find);
        personalRb = findViewById(R.id.rd_personal);
        homeRb.setChecked(true);

        /**图片的优化,其他三个图片做类似处理
         * 底部导航的时候会发生图片的颜色变化,所以radiobutton中的照片不是一张,而是引用了自定义的选择器照片
         * 本来使用的是getResources.getDrawable,不过已经过时,所以使用ContextCompat
         */
        Drawable home = ContextCompat.getDrawable(this, R.drawable.selector_home_drawable);
        /**
         *  当这个图片被绘制时,给他绑定一个矩形规定这个矩形
         *  参数前两个对应图片相对于左上角的新位置,后两个为图片的长宽
         */
        home.setBounds(0, 0, 80, 80);
        /**
         *   设置图片在文字的哪个方向,分别对应左,上,右,下
         */

        homeRb.setCompoundDrawables(null, home, null, null);

        Drawable phone = ContextCompat.getDrawable(this, R.drawable.selector_phone_drawable);
        phone.setBounds(0, 0, 80, 80);
        phoneRb.setCompoundDrawables(null, phone, null, null);

        Drawable find = ContextCompat.getDrawable(this, R.drawable.selector_find_drawable);
        find.setBounds(0, 0, 80, 80);
        findRb.setCompoundDrawables(null, find, null, null);

        Drawable personal = ContextCompat.getDrawable(this, R.drawable.selector_personal_drawable);
        personal.setBounds(0, 0, 80, 80);
        personalRb.setCompoundDrawables(null, personal, null, null);
    }

    @Override
    public void onCheckedChanged(RadioGroup group, int checkedId) {
        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
        hideAllFragment(transaction);
        switch (checkedId) {
            case R.id.rd_home:
                if (mHomeFragment == null) {
                    mHomeFragment = new HomeFragment();
                    transaction.add(R.id.fragment_container, mHomeFragment);
                } else {
                    transaction.show(mHomeFragment);
                }
                break;
            case R.id.rd_phone:
                if (mPhoneFragment == null) {
                    mPhoneFragment = new PhoneFragment();
                    transaction.add(R.id.fragment_container, mPhoneFragment);
                } else {
                    transaction.show(mPhoneFragment);
                }
                break;
            case R.id.rd_find:
                if (mFindFragment == null) {
                    mFindFragment = new FindFragment();
                    transaction.add(R.id.fragment_container, mFindFragment);
                } else {
                    transaction.show(mFindFragment);
                }
                break;
            case R.id.rd_personal:
                if (mPersonalFragment == null) {
                    mPersonalFragment = new PersonalFragment();
                    transaction.add(R.id.fragment_container,  mPersonalFragment);
                } else {
                    transaction.show( mPersonalFragment);
                }
                break;
        }
        transaction.commit();
    }

    public void hideAllFragment(FragmentTransaction transaction){
        if(mHomeFragment!=null){
            transaction.hide(mHomeFragment);
        }
        if(mPhoneFragment!=null){
            transaction.hide(mPhoneFragment);
        }
        if(mFindFragment!=null){
            transaction.hide(mFindFragment);
        }
        if(mPersonalFragment!=null){
            transaction.hide(mPersonalFragment);
        }
    }


}

效果图:

这里写图片描述

这样就大功告成了,是不是很简单

另外为什么不采用ViewPage呢?因为在下一篇博客会在这篇博客的基础上加上顶部导航栏。有兴趣的可以看看

Android顶部导航栏TabLayout+ViewPage

  • 9
    点赞
  • 39
    收藏
    觉得还不错? 一键收藏
  • 15
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 15
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值