Android

关注公众号 jb51net

关闭
首页 > 软件编程 > Android > Android-Jetpack-Navigation组件

Android-Jetpack-Navigation组件使用示例

作者:阿博聊编程

这篇文章主要介绍了Android-Jetpack-Navigation组件使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

Navigation的优势

可能有部分Android开发的小伙伴见过单Activity多FragmentApp,使用起来非常的流畅或者说非常的丝滑。自己想要尝试这种开发模式的时候,又会发现Fragment的管理会比较麻烦。现在不用怕了,Android SDK为了我们提供了Navigation来实现这种开发模式。希望这篇文章对小伙伴们有所启发。

先来说说使用Navigation的优势:

project的Navigation依赖设置

dependencies {
   def nav_version = "2.4.2"
   classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}

module的Navigation依赖设置

plugins {
  id 'androidx.navigation.safeargs'
}

Java版本:

implementation "androidx.navigation:navigation-fragment:2.4.1"
implementation "androidx.navigation:navigation-ui:2.4.1"

Kotlin版本:

implementation "androidx.navigation:navigation-fragment-ktx:2.4.1"
implementation "androidx.navigation:navigation-ui-ktx:2.4.1"

Compose版本:

implementation "androidx.navigation:navigation-compose:2.4.1"

Navigation的主要因素

Navigation代码示例

1.在res创建navigation资源文件夹,在navigation创建nav_graph.xml文件。

2.在activity_main.xml,内容详情如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <fragment
        android:id="@+id/nav_host_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:name="androidx.navigation.fragment.NavHostFragment"
        app:navGraph="@navigation/nav_graph"
        app:defaultNavHost="true"/>
</LinearLayout>

属性说明如下:

在nav_graph.xml创建两个Fragment

<?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/mainFragment">
    <fragment
        android:id="@+id/mainFragment"
        android:name="com.yb.test.MainFragment"
        android:label="fragment_main"
        tools:layout="@layout/fragment_main">
        <action
            android:id="@+id/action_mainFragment_to_secondFragment"
            app:destination="@id/secondFragment" />
    </fragment>
    <fragment
        android:id="@+id/secondFragment"
        android:name="com.yb.test.SecondFragment"
        android:label="fragment_second"
        tools:layout="@layout/fragment_second" />
</navigation>

NavControIIer实现导航功能

我们在MainFragment中创建按钮,设置按钮的点击事件:

view.findViewById<Button>(R.id.btn).setOnClickListener {
   Navigation.findNavController(it).navigate(R.id.action_mainFragment_to_secondFragment)
}

大概的实现就是这样子,感兴趣的小伙伴可以尝试一下。

以上就是Android-Jetpack-Navigation组件使用示例的详细内容,更多关于Android-Jetpack-Navigation组件的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文