gpt4 book ai didi

java - 如何在布局中放置 bottomAppBar

转载 作者:行者123 更新时间:2023-11-29 04:09:45 25 4
gpt4 key购买 nike

我目前正在开发一个使用底部应用栏作为主要导航的项目。但是即使我从示例源代码复制粘贴,我也总是会出错

这是我的布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">

<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.bottomappbar.BottomAppBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"></com.google.android.material.bottomappbar.BottomAppBar>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

</LinearLayout>

这是我的gradle依赖

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
implementation 'com.google.android.material:material:1.1.0-alpha05'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

这是我得到的一个错误

Binary XML file line #14: Binary XML file line #14: Error inflating class com.google.android.material.bottomappbar.BottomAppBar

最佳答案

根据 this网站:将您的 targetSdkVersion 设置为针对 Android P 的最新 API 版本,即 28,并确保您的应用继承Theme.MaterialComponentstheme 是为了让 BottomAppBar 使用最新的样式。或者,您可以声明 BottomAppBar 的样式在布局 xml 文件中的小部件声明中,如下所示:style="@style/Widget.MaterialComponents.BottomAppBar"

关于java - 如何在布局中放置 bottomAppBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55784909/

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