Navigation使用

第一步添加依赖:

    implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'
    implementation 'androidx.navigation:navigation-runtime-ktx:2.3.0'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'

步骤二:创建多个要调配的Fragment

这里我创建了5个Fragment,第一个是AIListeningFragment,第二个是AudiometryFragment,第三个是DeafAidFragment。第四个是MyFragment,第五个是ServiceFragment 其中一个如下:

class AIListeningFragment : Fragment() {
    // TODO: Rename and change types of parameters
    private var param1: String? = null
    private var param2: String? = null

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        arguments?.let {
            param1 = it.getString(ARG_PARAM1)
            param2 = it.getString(ARG_PARAM2)
        }
    }

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_a_i_listening, container, false)
    }

    companion object {

        // TODO: Rename and change types and number of parameters
        @JvmStatic
        fun newInstance(param1: String, param2: String) =
            AIListeningFragment().apply {
                arguments = Bundle().apply {
                    putString(ARG_PARAM1, param1)
                    putString(ARG_PARAM2, param2)
                }
            }
    }
}

步骤三:在res下面创建navigation文件夹,并创建navigation文件 需要注意的是navigation文件夹必须在res文件夹下面并且名称为固定写法,这里我新建了一个nav_graph.xml文件,如下所示:

1659491972336.jpg

1659492191959.jpg

依次添加完5个fragment之后把它依次连接起来


1659492457831.jpg

连接完成之后nav_graph.xml代码如下:

<?xml version="1.0" encoding="utf-8"?>
<navigation 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/nav_graph"
    app:startDestination="@id/AIListeningFragment">

    <fragment
        android:id="@+id/AIListeningFragment"
        android:name="com.eyuai.fragment.AIListeningFragment"
        android:label="fragment_a_i_listening"
        tools:layout="@layout/fragment_a_i_listening" >
        <action
            android:id="@+id/action_AIListeningFragment_to_audiometryFragment"
            app:destination="@id/audiometryFragment" />
        <action
            android:id="@+id/action_AIListeningFragment_to_audiometryFragment2"
            app:destination="@id/audiometryFragment" />
    </fragment>
    <fragment
        android:id="@+id/audiometryFragment"
        android:name="com.eyuai.fragment.AudiometryFragment"
        android:label="fragment_audiometry"
        tools:layout="@layout/fragment_audiometry" >
        <action
            android:id="@+id/action_audiometryFragment_to_deafAidFragment"
            app:destination="@id/deafAidFragment" />
    </fragment>
    <fragment
        android:id="@+id/deafAidFragment"
        android:name="com.eyuai.fragment.DeafAidFragment"
        android:label="fragment_deaf_aid"
        tools:layout="@layout/fragment_deaf_aid" >
        <action
            android:id="@+id/action_deafAidFragment_to_myFragment"
            app:destination="@id/myFragment" />
    </fragment>
    <fragment
        android:id="@+id/myFragment"
        android:name="com.eyuai.fragment.MyFragment"
        android:label="fragment_my"
        tools:layout="@layout/fragment_my" />
    <fragment
        android:id="@+id/serviceFragment"
        android:name="com.eyuai.fragment.ServiceFragment"
        android:label="fragment_service"
        tools:layout="@layout/fragment_service" />
</navigation>

步骤四:创建menu文件夹,添加menu_main.xml文件,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <item
        android:id="@+id/audiometryMenu"
        android:icon="@drawable/audiometry"
        android:title="测听" />

    <item
        android:id="@+id/deafAidMenu"
        android:icon="@drawable/deafaid"
        android:title="助听器" />

    <item
        android:id="@+id/AiListeningMenu"
        android:icon="@drawable/ailistening"
        android:title="AI辅听" />
    <item
        android:id="@+id/serviceMenu"
        android:icon="@drawable/service"
        android:title="服务"></item>
    <item
        android:id="@+id/myMenu"
        android:icon="@drawable/service"
        android:title="我的"></item>

</menu>

其中audiometry代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@mipmap/audiometrytoobarimg" android:state_selected="true" />
    <item android:drawable="@mipmap/noaudiometrytoobarimg" />
</selector>

第五步修改activity_main.xml布局如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools">

    

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="?attr/actionBarSize"
            app:layout_constraintTop_toTopOf="parent"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        </androidx.appcompat.widget.Toolbar>

        <ImageView
            android:id="@+id/topimg"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/toolbarbg"
            app:layout_constraintTop_toTopOf="parent"></ImageView>

        <androidx.appcompat.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <fragment
                android:id="@+id/my_nav_host_fragment"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                app:defaultNavHost="true"
                app:navGraph="@navigation/nav_graph" />
            <!-- android:theme="@style/myNavigationDrawerStyle"-->
            <com.google.android.material.bottomnavigation.BottomNavigationView
                android:id="@+id/bnv_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"

                app:itemTextAppearanceInactive="@style/bottom_tab_title_inactive"
                app:itemTextAppearanceActive="@style/bottom_tab_title_active"
                app:itemIconSize="@dimen/dp_20"
                android:background="@android:color/white"
                app:itemIconTint="@drawable/main_bottom_color_selector"
                app:itemTextColor="@drawable/main_bottom_color_selector"
                app:menu="@menu/menu_main" />
        </androidx.appcompat.widget.LinearLayoutCompat>
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

bottom_tab_title_inactive风格代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <style name="myNavigationDrawerStyle">
        <item name="android:textSize">10sp</item>
    </style>
    <!--选中的样式,可以设置选择的字体颜色,这里只是为了改变选择时的字体大小-->
    <style name="bottom_tab_title_active">
        <item name="android:textSize">10sp</item>
    </style>

    <!--没有选中的样式,导航默认的字体大小就是12sp-->
    <style name="bottom_tab_title_inactive">
        <item name="android:textSize">10sp</item>
    </style>


</resources>

main_bottom_color_selector代码如下:

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

第六步:添加MainActivity代码:

package com.eyuai.navigation

import android.os.Bundle
import android.util.Log
import android.view.View
import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentManager
import androidx.navigation.NavController
import androidx.navigation.Navigation
import com.google.android.material.bottomnavigation.BottomNavigationItemView
import com.google.android.material.bottomnavigation.BottomNavigationMenuView
import com.google.android.material.bottomnavigation.BottomNavigationView
import com.google.android.material.bottomnavigation.LabelVisibilityMode

class MainActivity : AppCompatActivity() {
    lateinit var navigationView: BottomNavigationView
    lateinit var menuView: BottomNavigationMenuView
    lateinit var itemView: BottomNavigationItemView
    lateinit var controller: NavController
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        initNav()
    }

    fun initNav() {
        controller = Navigation.findNavController(this@MainActivity, R.id.my_nav_host_fragment)
        navigationView = findViewById(R.id.bnv_view)
        navigationView.labelVisibilityMode =
            LabelVisibilityMode.LABEL_VISIBILITY_LABELED//BottomNavigationView3个以上图标不显示文字
        menuView = navigationView.getChildAt(0) as BottomNavigationMenuView
        supportFragmentManager.registerFragmentLifecycleCallbacks(object :
            FragmentManager.FragmentLifecycleCallbacks() {

            override fun onFragmentCreated(
                fm: FragmentManager,
                f: Fragment,
                savedInstanceState: Bundle?
            ) {

                Log.i("NavActivity", "commonLog - onFragmentCreated: $f")
            }

            override fun onFragmentStarted(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentStarted: $f")
            }

            override fun onFragmentResumed(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentResumed: $f")

            }

            override fun onFragmentPaused(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentPaused: $f")
            }

            override fun onFragmentStopped(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentStopped: $f")
            }

            override fun onFragmentDestroyed(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentDestroyed: $f")
            }

            override fun onFragmentActivityCreated(
                fm: FragmentManager,
                f: Fragment,
                savedInstanceState: Bundle?
            ) {
                Log.i("NavActivity", "commonLog - onFragmentActivityCreated: $f")
            }

            override fun onFragmentViewCreated(
                fm: FragmentManager,
                f: Fragment,
                v: View,
                savedInstanceState: Bundle?
            ) {

            }

            override fun onFragmentViewDestroyed(fm: FragmentManager, f: Fragment) {
                Log.i("NavActivity", "commonLog - onFragmentViewDestroyed: $f")
            }

        }, true)
        navigationView.setOnNavigationItemSelectedListener(BottomNavigationView.OnNavigationItemSelectedListener { it ->
            var canClick = true
            when (it.itemId) {
                R.id.audiometryMenu -> {
                    controller.navigate(R.id.audiometryFragment);
                    canClick = true
                }
                R.id.deafAidMenu -> {
                    // canClick=false//以后可以用来限制底部状态是否点击状态
                    controller.navigate(R.id.deafAidFragment);
                }
                R.id.AiListeningMenu -> {
                    canClick = true
                    controller.navigate(R.id.AIListeningFragment);
                }
                R.id.serviceMenu -> {
                    canClick = true
                    controller.navigate(R.id.serviceFragment);
                }
                R.id.myMenu -> {
                    canClick = true
                    controller.navigate(R.id.myFragment);
                }
            }
            canClick
        })


    }
}

如fragment 想返回那个fragment里可以

val navController = findNavController()
        navController.navigate(R.id.AIListeningFragment)

为底部添加消息提醒,原文章//www.greatytc.com/p/4c8dfe6a0cf3,如有冒犯,请联系删除,只是为了记录

第一步添加notifications_badge.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <TextView
        android:id="@+id/notifications_badge"
        android:layout_width="@dimen/dp_16"
        android:layout_height="@dimen/dp_16"
        android:layout_gravity="top|center_horizontal"
         android:layout_marginLeft="@dimen/dp_20"
        android:background="@drawable/notification_badge_bg"
        android:gravity="center"
        android:text="5"
        android:textColor="@color/white"
        android:textSize="8sp" />
</LinearLayout>

notification_badge_bg

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <size
        android:width="28sp"
        android:height="28sp" />
    <solid android:color="#ff00ff" />
</shape>

创建BavNotifacationBadgeUtil,代码如下

import android.view.LayoutInflater;
import android.view.ViewGroup;
import android.widget.TextView;

import com.eyuai.navigation.R;
import com.google.android.material.bottomnavigation.BottomNavigationItemView;
import com.google.android.material.bottomnavigation.BottomNavigationMenuView;
import com.google.android.material.bottomnavigation.BottomNavigationView;

public class BavNotifacationBadgeUtil {

    public static void addNotificationBadge(BottomNavigationView mBNV, int itemIndex, String desc) {
        BottomNavigationItemView mCurrentItemView = getBottomNavigationItemView(mBNV, itemIndex);
        LayoutInflater.from(mBNV.getContext()).inflate(R.layout.notifications_badge, mCurrentItemView, true);
        TextView mBadge = (TextView) mCurrentItemView.findViewById(R.id.notifications_badge);
        if (mBadge != null) {
            mBadge.setText(desc);
        }
    }

    public static void removeNotificationBadge(BottomNavigationView mBNV, int itemIndex) {
        BottomNavigationItemView mCurrentItemView = getBottomNavigationItemView(mBNV, itemIndex);
        TextView mBadge = (TextView) mCurrentItemView.findViewById(R.id.notifications_badge);
        if (mBadge != null) {
            ((ViewGroup) mBadge.getParent()).removeView(mBadge);
        }
    }

    public static void modifyNotificationBadgeContent(BottomNavigationView mBNV, int itemIndex, String desc) {
        BottomNavigationItemView mCurrentItemView = getBottomNavigationItemView(mBNV, itemIndex);
        TextView mBadge = (TextView) mCurrentItemView.findViewById(R.id.notifications_badge);
        if (mBadge != null) {
            mBadge.setText(desc);
        }
    }

    public static Boolean judgeBadgeExist(BottomNavigationView mBNV, int itemIndex) {
        BottomNavigationItemView mCurrentItemView = getBottomNavigationItemView(mBNV, itemIndex);
        TextView mBadge = (TextView) mCurrentItemView.findViewById(R.id.notifications_badge);
        if (mBadge == null) {
            return false;
        } else {
            return true;
        }
    }

    private static BottomNavigationItemView getBottomNavigationItemView(BottomNavigationView mBNV, int itemIndex) {
        BottomNavigationMenuView bottomNavigationMenuView = (BottomNavigationMenuView) mBNV.getChildAt(0);
        return (BottomNavigationItemView) bottomNavigationMenuView.getChildAt(itemIndex);
    }
}

使用:

BavNotifacationBadgeUtil.addNotificationBadge(navigationView,2,"10")

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容