• JetPack--Navigation实现页面跳转


    Navigation组件可以让页面之间的切换变得更加容易实现。

    Navigation大致包括四个部分:

    1. NavHost

      NavHost相当于一个容器,用来存放哪些页面可以进来,哪些页面可以出去。

    2. Fragment

      Fragment推出的最初目的是为了适应大屏幕,将大屏幕分割成小部分,每个小部分就是一个Fragment。

    3. NavController

      NavController用来控制导航的逻辑,按下按键要切换到哪个页面,具体要切换到哪个页面由导航路线决定。

    4. NavGraph

      NavGraph展示了页面之间的逻辑关系,也就是页面之间切换的关系,页面之间由箭头组成,每个箭头是一个Action,由NavController来驱动这些Action,进而实现页面的切换。

    代码实践

    第一步:首先创建两个Fragment。

    fragment_home.xml

    
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".fragment.HomeFragment"
        android:orientation="vertical"
        android:gravity="center"
        >
    
        <TextView
            android:layout_width="100dp"
            android:layout_height="50dp"
            android:text="主页"
            android:gravity="center"
            />
    
        <Button
            android:id="@+id/btn1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="跳转"
            />
    
    LinearLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    fragment_detail.xml

    
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".fragment.HomeFragment"
        android:orientation="vertical"
        android:gravity="center"
        >
    
        <TextView
            android:layout_width="100dp"
            android:layout_height="50dp"
            android:text="详情页"
            android:gravity="center"
            />
    
        <Button
            android:id="@+id/btn1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="跳转"
            />
    
    LinearLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    第二步:在res文件下创建Navigation资源文件,用于设计路线图(NavGraph)。

    可以使用AS提供的可视化进行设计:

    点击绿色加号将需要进行切换的页面加进来。
    在这里插入图片描述
    每个页面通过箭头连接,表示从一个页面可以跳转到箭头指向的页面,每一个箭头是一个Action,每个Action都有一个唯一的id。
    在这里插入图片描述
    写完之后呢,我们会发现Hosts框会有如下提示,中文意思是:“导航图必须在布局中从NavHostFragment中引用才能访问”,这个NavHostFragment需要在Activity的xml文件中创建,具体看第三步。
    在这里插入图片描述
    这是代码部分

    
    <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/homeFragment">
    
    
        <fragment
            android:id="@+id/homeFragment"
            android:name="com.example.navigationtest.fragment.HomeFragment"
            android:label="fragment_home"
            tools:layout="@layout/fragment_home" >
            <action
                android:id="@+id/action_homeFragment_to_detailFragment"
                app:destination="@id/detailFragment" />
        fragment>
    
        <fragment
            android:id="@+id/detailFragment"
            android:name="com.example.navigationtest.fragment.DetailFragment"
            android:label="DetailFragment" >
            <action
                android:id="@+id/action_detailFragment_to_homeFragment2"
                app:destination="@id/homeFragment" />
        fragment>
    navigation>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    第三步:创建NavHostFragment

    在activity_main.xml中选择NavHostFragment拖动到右边的布局当中去。

    在这里插入图片描述
    之后会有如下提示,选择需要访问的导航图,点击“OK” 即可。

    在这里插入图片描述

    回到导航图文件中我们可以看到NavHostFragment已经连接好了。
    在这里插入图片描述
    代码如下:

    
    <androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
        <androidx.fragment.app.FragmentContainerView
            android:id="@+id/fragmentContainerView2"
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="409dp"
            android:layout_height="729dp"
            app:defaultNavHost="true"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:navGraph="@navigation/nav_graph"
            tools:layout_editor_absoluteY="1dp"
            tools:ignore="MissingConstraints" />
            
    androidx.constraintlayout.widget.ConstraintLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    第四步:使用NavControler来控制导航的逻辑。

    首先,页面的跳转肯定是由于用户点击了某个控件或按键触发的,所以在处理点击事件时实现页面跳转。核心代码如下:

    NavController controller = Navigation.findNavController(v); // 获取控制器
    controller.navigate(R.id.action_homeFragment_to_detailFragment); // 调用navigation方法实现页面跳转,该方法需要传递一个Action的id,表示要执行这个跳转行为。
    
    • 1
    • 2

    HomeFragment

    public class HomeFragment extends Fragment {
    
        public HomeFragment() {
            // Required empty public constructor
        }
    
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                                 Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            return inflater.inflate(R.layout.fragment_home, container, false);
        }
    
        @Override
        public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
            Button button = (Button) view.findViewById(R.id.btn1);
            button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    NavController controller = Navigation.findNavController(v);
                    controller.navigate(R.id.action_homeFragment_to_detailFragment);
                }
            });
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    使用NavController控制导航逻辑的第二种写法,这种写法更为简洁。

    button.setOnClickListener(Navigation.createNavigateOnClickListener(R.id.action_detailFragment_to_homeFragment2));
    
    • 1

    DetailFragment

    public class DetailFragment extends Fragment {
    
        public DetailFragment() {
            // Required empty public constructor
        }
    
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                                 Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            return inflater.inflate(R.layout.fragment_detail, container, false);
        }
    
        @Override
        public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
            Button button = (Button) view.findViewById(R.id.btn1);
            button.setOnClickListener(Navigation.createNavigateOnClickListener(R.id.action_detailFragment_to_homeFragment2));
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    至此,基本的跳转功能已经实现,但是想要实现点击左上角的回退按钮实现回退功能又该如何实现呢?当然,Navigation也为我们提供了该功能,具体如下:

    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            
            NavHostFragment fragment = (NavHostFragment)getSupportFragmentManager().findFragmentById(R.id.fragmentContainerView);
            NavController controller = fragment.getNavController();
            NavigationUI.setupActionBarWithNavController(this,controller);
            
        }
    
        @Override
        public boolean onSupportNavigateUp() {
            NavController controller = Navigation.findNavController(this,R.id.fragmentContainerView);
            return controller.navigateUp();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
  • 相关阅读:
    Mybatis动态SQL踩坑记
    linux三剑客(grep、sed、awk)基本使用
    2023南昌航空大学考研介绍
    部署LVS-DR群集
    Python AI 之Stable-Diffusion-WebUI
    idea2023如何查看被使用上下文关系
    mongoDB基本命令操作
    【学习笔记】数论-乘法逆元
    springboot整合验证码、滑块验证框架
    postgresql分区表
  • 原文地址:https://blog.csdn.net/qq_46653910/article/details/125917427