迁移项目中的androidx appbarlayout问题
androidx appbarlayout problem in migrated project
我最近将我的项目重构为 androidx。但现在它有一个致命的 exception.when 我 运行 项目我面临 coordinatorlayout 和 appbarLayout 的错误并且与 androidx 不兼容。我想我必须为 AppBarLayout 使用 androidx 替代方案,但我搜索了它但找不到任何替代方案。
android.view.InflateException: Binary XML file line #36: Could not inflate Behavior subclass android.support.design.widget.AppBarLayout$ScrollingViewBehavior
Caused by: java.lang.RuntimeException: Could not inflate Behavior subclass android.support.design.widget.AppBarLayout$ScrollingViewBehavior
这是我的 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<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:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:fitsSystemWindows="true"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:toolbarId="@+id/toolbar"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:layout_scrollInterpolator="@android:anim/decelerate_interpolator"
app:contentScrim="?attr/colorPrimary">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/allAdsMain_recyclerView_mainCategories"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".all_ad_main" >
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/allAdsMain_recyclerView_ads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
<Button
android:id="@+id/allAdsMain_button_adRegister"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:layout_marginBottom="5dp"
android:background="@drawable/roundshapebtn"
android:text="@string/call_for_price"
android:textColor="@color/white"
android:textDirection="rtl"
android:textSize="24sp"
app:layout_behavior="@string/hide_bottom_view_on_scroll_behavior"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
您仍在引用 NestedScrollView
下的支持库依赖项。
变化:
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
到
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
您已经在 CoordinatorLayout
中使用它了。下次你 运行 遇到此类问题时,你可以在 Android Studio 中使用代码完成,同时尝试创建(在本例中)一个 AppBarLayout
并检查版本 Android Studio 想要导入。如果你的依赖设置正确,应该只有 androidx 选项,
我最近将我的项目重构为 androidx。但现在它有一个致命的 exception.when 我 运行 项目我面临 coordinatorlayout 和 appbarLayout 的错误并且与 androidx 不兼容。我想我必须为 AppBarLayout 使用 androidx 替代方案,但我搜索了它但找不到任何替代方案。
android.view.InflateException: Binary XML file line #36: Could not inflate Behavior subclass android.support.design.widget.AppBarLayout$ScrollingViewBehavior
Caused by: java.lang.RuntimeException: Could not inflate Behavior subclass android.support.design.widget.AppBarLayout$ScrollingViewBehavior
这是我的 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<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:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:fitsSystemWindows="true"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:toolbarId="@+id/toolbar"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:layout_scrollInterpolator="@android:anim/decelerate_interpolator"
app:contentScrim="?attr/colorPrimary">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/allAdsMain_recyclerView_mainCategories"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".all_ad_main" >
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/allAdsMain_recyclerView_ads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
<Button
android:id="@+id/allAdsMain_button_adRegister"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:layout_marginBottom="5dp"
android:background="@drawable/roundshapebtn"
android:text="@string/call_for_price"
android:textColor="@color/white"
android:textDirection="rtl"
android:textSize="24sp"
app:layout_behavior="@string/hide_bottom_view_on_scroll_behavior"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
您仍在引用 NestedScrollView
下的支持库依赖项。
变化:
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
到
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
您已经在 CoordinatorLayout
中使用它了。下次你 运行 遇到此类问题时,你可以在 Android Studio 中使用代码完成,同时尝试创建(在本例中)一个 AppBarLayout
并检查版本 Android Studio 想要导入。如果你的依赖设置正确,应该只有 androidx 选项,