0

我正在构建一个应用程序,它应该有一个内部带有片段的活动。

整体显示有效,但是当我尝试显示加载屏幕时,它从未显示。当我在顶部栏上录音时,它应该显示另一个片段,但这个片段没有出现。我意识到新片段显示在当前布局下方。

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<layout 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">

    <data>

    </data>

    <androidx.drawerlayout.widget.DrawerLayout
        android:id="@+id/drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/black"
        tools:context=".ui.activity.HomeScreenActivity">



        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/homelayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <include
                android:id="@+id/loading"
                android:visibility="gone"
                layout="@layout/layout_loading"/>

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:minHeight="?attr/actionBarSize"
                android:background="@color/transparent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:menu="@menu/top_bar_menu"
                app:titleTextColor="@color/gainsboro_00"
                app:layout_constraintTop_toTopOf="parent">

                <TextView
                    android:id="@+id/toolbar_title"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textAlignment="center"
                    android:text="@string/loading_car"
                    android:textColor="@color/gainsboro_00"
                    android:letterSpacing="0.5"
                    android:textAllCaps="true"
                    android:gravity="center"
                    android:clickable="true"
                    android:focusable="true"/>

            </androidx.appcompat.widget.Toolbar>

            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/main_container"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:orientation="vertical"
                app:layout_constraintTop_toBottomOf="@+id/toolbar"
                app:layout_constraintBottom_toBottomOf="parent"/>

        </androidx.constraintlayout.widget.ConstraintLayout>

        <com.google.android.material.navigation.NavigationView
            android:id="@+id/navigation_view"
            style="@style/Widget.Custom.NavigationView"
            android:background="@color/gainsboro_06"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:clipToPadding="false"
            app:menu="@menu/navigation_menu"
            app:headerLayout="@layout/layout_nav_header">


            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:orientation="vertical"
                android:padding="16dp">

                <TextView
                    android:id="@+id/signout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textAllCaps="true"
                    android:textColor="@color/denotive_red"
                    android:textStyle="bold"
                    android:gravity="center"
                    android:text="@string/signout" />
            </LinearLayout>

        </com.google.android.material.navigation.NavigationView>

        <FrameLayout
            android:id="@+id/select_vehicle_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:visibility="invisible"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.drawerlayout.widget.DrawerLayout>



</layout>

我期望的行为是能够加载加载屏幕,现在,我正在使用:

       homeScreenBinding.loading.visibility = View.VISIBLE

       homeScreenBinding.loading.visibility = View.GONE

什么都没有出现。

与我应该在点击时显示的列表相同toolbarTitle。我做了下面的代码

homeScreenBinding.toolbarTitle.setOnClickListener {
            if (savedInstanceState == null) {
                homeScreenBinding.selectVehicleLayout.visibility = View.VISIBLE
                replaceFragment(VehiclesListFragment(), R.id.select_vehicle_layout)
            }
        }

片段出现,但它就像下面homelayout

replaceFragment 定义为:


fun AppCompatActivity.replaceFragment(fragment: Fragment, container: Int) {


    val className = fragment.javaClass.name
   // supportFragmentManager
   //     .beginTransaction()
   //     .replace(container, fragment, className)
   //     .addToBackStack(className)
   //     .commit()

    supportFragmentManager.commit {
        replace(container, fragment, className)
        addToBackStack(className)
    }

}


我放了一些日志,我看到点击被捕获并且我们访问了片段。它就像任何应该显示在 DrawerLayout 顶部或homeLayout无法显示的东西。

这是加载布局

<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"
    android:background="@color/transparent_black">

    <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

我觉得问题出在DrawerLayout. 当我尝试DrawerLayout进行测试时,会显示加载布局

任何想法 ?谢谢

4

1 回答 1

0

当我尝试显示加载屏幕时,它从未显示

从提供的 XML 布局中,main_container在 loading_screen 顶部被过度播放;即加载屏幕不会被看到,因为它在主容器的后面。

要解决此问题,请将加载屏幕移至以下main_container

<?xml version="1.0" encoding="utf-8"?>
<layout 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">

    <data>

    </data>

    <androidx.drawerlayout.widget.DrawerLayout
        android:id="@+id/drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/black"
        tools:context=".ui.activity.HomeScreenActivity">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/homelayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">


            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:minHeight="?attr/actionBarSize"
                android:background="@color/transparent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:menu="@menu/top_bar_menu"
                app:titleTextColor="@color/gainsboro_00"
                app:layout_constraintTop_toTopOf="parent">

                <TextView
                    android:id="@+id/toolbar_title"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textAlignment="center"
                    android:text="@string/loading_car"
                    android:textColor="@color/gainsboro_00"
                    android:letterSpacing="0.5"
                    android:textAllCaps="true"
                    android:gravity="center"
                    android:clickable="true"
                    android:focusable="true"/>

            </androidx.appcompat.widget.Toolbar>

            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/main_container"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:orientation="vertical"
                app:layout_constraintTop_toBottomOf="@+id/toolbar"
                app:layout_constraintBottom_toBottomOf="parent"/>
                
                
            <include
                android:id="@+id/loading"
                android:visibility="gone"
                layout="@layout/layout_loading"/>
                

        </androidx.constraintlayout.widget.ConstraintLayout>


        <!--   Rest of the layout  -->

    </androidx.drawerlayout.widget.DrawerLayout>


</layout>

当我在顶部栏上录音时,它应该显示另一个片段,但这个片段没有出现。我意识到新片段显示在当前布局下方。

被注释掉的代码应该可以工作:

   // supportFragmentManager
   //     .beginTransaction()
   //     .replace(container, fragment, className)
   //     .addToBackStack(className)
   //     .commit()

而不是现在的。

于 2021-09-07T22:11:42.337 回答