какую библиотеку я должен реализовать, чтобы использовать app: layout_behavior = "@ string / appbar_scrolling_view_behavior" - PullRequest
1 голос
/ 25 сентября 2019

Я хочу добавить атрибут app:layout_behavior в XML-файл, но он не поддерживается.Какую библиотеку мне добавить в файл 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

1 Ответ

1 голос
/ 25 сентября 2019

Используйте Библиотеку компонентов материалов , которая является заменой для библиотеки поддержки проектирования Android.

implementation 'com.google.android.material:material:1.1.0-alpha10'

или последняя стабильная версия:

implementation 'com.google.android.material:material:1.0.0'
...