Содержимое списка не отображается после добавления панели навигации Android - PullRequest
0 голосов
/ 25 марта 2020

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

Но если я запускаю действие непосредственно на главном, проблем нет, список появляется.

    Intent in = new Intent(MainActivity.this,   ActivityWithAList.class);
    startActivity(in);

Я думал, что это из-за моего contentn_navigation_drawer. 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<fragment
    android:id="@+id/nav_host_fragment"
    android:name="androidx.navigation.fragment.NavHostFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:defaultNavHost="true"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:navGraph="@navigation/mobile_navigation" />
 </androidx.constraintlayout.widget.ConstraintLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...