在新的androidx工件中出现应用行为错误

时间:2019-04-30 14:58:10

标签: java android xml android-layout kotlin

我正在开发一个Android应用程序。在MainActivity中有一个折叠的工具栏。我正在使用新的底部导航视图,该视图由androidx构件提供,并在上面添加了一些其他库。因此,我面临着应用程序行为@string appbar滚动行为的问题。它显示了一个错误,但是当我在没有androidx工件的情况下使用它时,它工作正常。请让我知道是否找到有关此问题的解决方案。谢谢。

<androidx.coordinatorlayout.widget.CoordinatorLayout
        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">

    <com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                app:layout_scrollFlags="scroll|enterAlways"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"/>

    </com.google.android.material.appbar.AppBarLayout>


    <fragment
            android:id="@+id/fragment"
            android:layout_marginBottom="50dp"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:name="androidx.navigation.fragment.NavHostFragment"
            app:navGraph="@navigation/bottom_navigation"
            app:defaultNavHost="true"/>

    <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNav"
            app:menu="@menu/bottom_menu"
            android:layout_gravity="bottom"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

0 个答案:

没有答案