О NavigationFragment

#android #kotlin #fragment

#Android #kotlin #фрагмент

Вопрос:

NavgationHostFragment не работает.

 //activity_main
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">


    <fragment
        android:id="@ id/fragment3"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:navGraph="@navigation/nav_main"
        tools:layout_editor_absoluteX="131dp"
        tools:layout_editor_absoluteY="201dp" />

</androidx.constraintlayout.widget.ConstraintLayout>


 
 //nav_main
<?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_main"
    app:startDestination="@id/welcomeFragment2">
    <fragment
        android:id="@ id/welcomeFragment2"
        android:name="com.example.fragmenttest.WelcomeFragment"
        android:label="WelcomeFragment" />
</navigation>

 

Я не знаю, почему.

Процесс не описан во фрагменте или других документах.

Пожалуйста, дайте мне подсказку, как сделать так, чтобы фрагмент xml отображался вместо Activity_main. Я боролся с этим в течение нескольких дней. Спасибо за вашу помощь.

Комментарии:

1. с точки зрения кода, кажется, все в порядке. добавьте более подробную информацию об ошибке, с которой вы столкнулись в течение нескольких дней

Ответ №1:

Извините, я не добавлял адаптер, и он не отображается.