- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 xml 文件中添加 app:layout_behavior
属性,但不支持。我应该在 gradle 文件中添加哪个库?
compile 'com.android.support:design:22.2.0
当我添加此编译库时,android Studio 给出错误,我必须让 androidx 库支持该 app:layout_behavior
。
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.expensemanager"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.firebase:firebase-analytics:17.2.0'
implementation 'com.google.firebase:firebase-auth:19.0.0'
implementation 'com.google.firebase:firebase-database:19.1.0'
implementation 'com.google.firebase:firebase-functions:19.0.1'
implementation 'androidx.cardview:cardview:1.0.0'
}
apply plugin: 'com.google.gms.google-services'
请帮助我我应该实现什么来支持app:layout_behavior
最佳答案
使用 Material Components Library这是 Android 设计支持库的直接替代品。
implementation 'com.google.android.material:material:1.1.0-beta02'
或最新稳定版:
implementation 'com.google.android.material:material:1.0.0'
关于android - 我应该实现哪个库来使用应用程序 :layout_behavior ="@string/appbar_scrolling_view_behavior",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58095515/
我想在 xml 文件中添加 app:layout_behavior 属性,但不支持。我应该在 gradle 文件中添加哪个库? compile 'com.android.support:design:
我正在使用 androidx 依赖项,一切正常。但是 linter 假设 @string/appbar_scrolling_view_behavior 是一个未解析的引用。见下图: 代码本身完全可以正
更新 Android Studio 后,我在 viewpager 的 xml 中收到此错误。 奇怪的是它工作正常,项目构建没有任何问题。 为什么 '@string/appbar_scrolling_v
谁能给我解释一下这个属性"app:layout_behavior="@string/appbar_scrolling_view_behavior"? 最佳答案 更改 android.support.c
请引用我下面的 fragment .XML ** 在上面的文件行中 app:layout
我尝试将 app:layout_behavior="@string/appbar_scrolling_view_behavior"添加到 SwipeRefreshLayout 但我不知道为什么我在 X
我有一个带有 CoordinatorLayout 的父 fragment ,用于在嵌套 fragment 内滚动,但我想为不需要它的 fragment 禁用 ToolBar“隐藏”。 5 个 frag
我有一个奇怪的问题,使用 AppCompat Lib 22.2 并引入了新的:layout_behavior 如果我将其与值 "@string/appbar_scrolling_view_behavi
我已经将支持库更新到 28.0.0-alpha3,并且当我使用它时,lint 给了我这个警告 @string/appbar_scrolling_view_behavior is marked as p
我是一名优秀的程序员,十分优秀!