gpt4 book ai didi

ANDROID:错误膨胀类 android.support.design.widget.AppBarLayout

转载 作者:行者123 更新时间:2023-12-02 11:23:11 26 4
gpt4 key购买 nike

我在布局中添加了一个工具栏,现在运行时出现此错误:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myapp/mainactivity.MainActivity}: android.view.InflateException: Binary XML file line #9: Binary XML file line #2: Error inflating class android.support.design.widget.AppBarLayout

这是我的 Activity 布局:
<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">

<include layout="@layout/appbar"/>

</androidx.constraintlayout.widget.ConstraintLayout>

这是我的应用栏布局:
<android.support.design.widget.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_bar"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >

</android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

在我的 Activity onCreate() 中:
Toolbar toolbar = findViewById(R.id.toolbar);
if (toolbar != null) {
setSupportActionBar(toolbar);
toolbar.setTitle(getTitle());
}

我不知道为什么。有什么建议么?

最佳答案

你需要使用

<com.google.android.material.appbar.AppBarLayout
<androidx.appcompat.widget.Toolbar

代替
<android.support.design.widget.AppBarLayout
<android.support.v7.widget.Toolbar

示例代码
<com.google.android.material.appbar.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_bar"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >

</androidx.appcompat.widget.Toolbar>

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

确保您已在 dependencies 下方添加
implementation 'com.google.android.material:material:1.0.0'

更新

如果您使用过 ToolbarAppBarLayout在您的 Activity 中,然后确保您的 Activity 代码中有正确的导入
import androidx.appcompat.widget.Toolbar
import com.google.android.material.appbar.AppBarLayout

关于ANDROID:错误膨胀类 android.support.design.widget.AppBarLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55298742/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com