kotlin,Android底部导航栏ButtomNavigation手把手教你实现

目录

一.准备

二.设置activity布局文件

三.编写Activity文件

四.效果


通过本篇文章的学习,教会你如何使用BottomNavigation底部导航栏

实现仿微信底部导航栏的功能,点击不同的底部导航栏显示不同页面

在文章最后,有视频效果,感兴趣的朋友可以划到最后看看

一.准备

首先需要准备一个activity和若干个fragment(本文以三个fragment为例)

并将fragment中冗余代码删去

如图:

在每个fragment的布局文件中放入一个TextView以便区分

如图:

二.设置activity布局文件

我用的是相对布局

<com.google.android.material.bottomnavigation.BottomNavigationView 不要写错了

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/bottomNavigationView" />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottomNavigationView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:menu="@menu/navigation"/>
</RelativeLayout>

app:menu="@menu/navigation" 这一句会标红,因为还没有创建这个文件

要在res文件下创建

type选择menu

编辑menu文件

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/AAA"
        android:title="第一页"
        android:icon="@drawable/baseline_home_24">
    </item>
    <item
        android:id="@+id/BBB"
        android:title="第二页"
        android:icon="@drawable/baseline_smoke_free_24">
    </item>
    <item
        android:id="@+id/CCC"
        android:title="第三页"
        android:icon="@drawable/baseline_people_24">
    </item>
</menu>

我用的是系统的图像

如何创建系统的图像,也很简单

首先如图选择drawable处右键

然后点击这边的图像就可以新建

你也可以在搜索框搜索你想要的图像

然后点击OK,回到这边

再点击NEXT

最后点击finish,就新建完成了 。

当menu文件搞定后,回到activity的布局文件,你就可以看到下面已经出现导航栏了

三.编写Activity文件

将代码修改成这样即可,后面我会一部分一部分讲解

package com.example.buttomnavigation

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat
import androidx.fragment.app.FragmentTransaction
import com.example.buttomnavigation.fragment.FragmentA
import com.example.buttomnavigation.fragment.FragmentB
import com.example.buttomnavigation.fragment.FragmentC
import com.google.android.material.bottomnavigation.BottomNavigationView

class MainActivity : AppCompatActivity() {
    var fragmenta: FragmentA?=null
    var fragmentb: FragmentB?=null
    var fragmentc: FragmentC?=null
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        val bottomNavigationView: BottomNavigationView = findViewById(R.id.bottomNavigationView)

        //默认选中
        selectedFragment(0)

        bottomNavigationView?.setOnNavigationItemSelectedListener {menuItem->
            if (menuItem.itemId==R.id.AAA){
                selectedFragment(0)
            }else if (menuItem.itemId==R.id.BBB) {
                selectedFragment(1)
            }else{
                selectedFragment(2)
            }
            true
        }
    }
    //选择
    fun selectedFragment(postion:Int){
        val fragmentTransaction =supportFragmentManager.beginTransaction()
        hideFragment(fragmentTransaction)
        if (postion ==0) {
            if (fragmenta == null) {
                fragmenta = FragmentA()
                fragmentTransaction.add(R.id.content, fragmenta!!)
            } else {
                fragmentTransaction.show(fragmenta!!)
            }
        }else if (postion==1){
            if (fragmentb == null){
                fragmentb = FragmentB()
                fragmentTransaction.add(R.id.content,fragmentb!!)
            }else{
                fragmentTransaction.show(fragmentb!!)
            }
        }else{
            if (fragmentc==null){
                fragmentc = FragmentC()
                fragmentTransaction.add(R.id.content,fragmentc!!)
            }else{
                fragmentTransaction.show(fragmentc!!)
            }
        }
        //一定要提交
        fragmentTransaction.commit()
    }
    //隐藏全部fragment
    fun hideFragment(fragmentTransaction: FragmentTransaction){
        if(fragmenta!=null){
            fragmentTransaction.hide(fragmenta!!)
        }
        if (fragmentb!=null){
            fragmentTransaction.hide(fragmentb!!)
        }
        if (fragmentc!=null){
            fragmentTransaction.hide(fragmentc!!)
        }

    }
}

这串代码看似很复杂,其实可以分成四个模块来理解

首先是初始化,三个Fragment

然后是自己写的方法,实现隐藏所有的Fragment

然后再写一个方法,用于选择显示哪个Fragment

在这个方法内,运用了刚才写的hideFragment方法,将Fragment全部隐藏

然后根据position决定,显示哪个Fragment

最后是这一块,初始化控件,编写点击事件,并且设置默认position为0,也就是最开始默认显示的Fragment进行设置

四.效果

按照上面的步骤完成后,即可实现仿微信底部控制栏的效果

视频效果:

ButtomNavigation效果

  • 12
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

这次终于凑到十个字了

感谢各位哥哥姐姐,弟弟妹妹

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值