BottomSheetBehaviorはandroidXライブラリにありません


89

私はBottomSheetBehavior元のサポートライブラリでを使用していました:

implementation 'com.android.support:design:27.1.1' 

新しいandroidxライブラリを使用するように移行したとき、BottomSheetBehaviorがありません。上記のサポートライブラリからのマッピングもAndroidXリファクタリングリストに含まれていませんが、移行ツールによって削除されました。

新しいandroidxライブラリにBottomSheetBehaviorを含めるために欠けているもの。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.google.android.material:material:1.0.0-beta01'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

    // ReactiveX
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
    implementation 'io.reactivex.rxjava2:rxkotlin:2.2.0'

    implementation 'com.android.support:design:28.1.0'

    // Android Compatability Libraries
    // Version: https://developer.android.com/topic/libraries/support-library/refactor
    implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha1'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0-beta01'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-beta01'
    implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'

    // Android Navigation Component
    // Check here for updated version info - will move to androidx soon.
    // https://developer.android.com/topic/libraries/architecture/adding-components
    def nav_version = "1.0.0-alpha04"

    // use -ktx for Kotlin
    implementation "android.arch.navigation:navigation-fragment-ktx:$nav_version"
    implementation "android.arch.navigation:navigation-ui-ktx:$nav_version"
    androidTestImplementation "android.arch.navigation:navigation-testing-ktx:$nav_version"

    // Testing
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
}

回答:


222

Refactor > Migrate to AndroidXAndroidStudioのリファクタリングツールがBottomSheetBehaviourのXMLを正しく移行しなかったことが判明しました。

古い場所はandroid.support.design.widget.BottomSheetBehaviorであり、移行ツールによって変更されませんでした。元のXMLは次のとおりです。

<fragment
    android:id="@+id/player_bottom_sheet_fragment"
    android:name="app.rxsongbrowsertrials.ui.player.PlayerToggleFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:behavior_hideable="false"
    app:behavior_peekHeight="56dp"
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
    />

新しい場所はcom.google.android.material.bottomsheet.BottomSheetBehaviorであるため、レイアウトは次のようになる必要があります。

<fragment
    android:id="@+id/player_bottom_sheet_fragment"
    android:name="app.rxsongbrowsertrials.ui.player.PlayerToggleFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:behavior_hideable="false"
    app:behavior_peekHeight="56dp"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    />

7
私はこれに一日中過ごしました。うまくいけば、これは人々がより簡単に発見できるように泡立った。
Adam Hurwitz 2018年

ASからの最後のアップデートでは、AndroidXの移行でこのエラーが修正されていません。おかげで
Genaut

どうもありがとうございました
Sardorbek Rkh

52

置き換えることもできます

    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
or 
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior"

沿って

app:layout_behavior="@string/bottom_sheet_behavior"

1
Android Studioテンプレートから生成された私のプロジェクトには、がありませんでした@string/bottom_sheet_behavior。私に追加implementation "com.google.android.material:material:1.1.0-alpha04"することでそれを引き込むことができたと思いますapp/build.gradle
MichaelOsofsky19年

21

Googleが提供するマテリアルコンポーネントライブラリをインポートする必要があります。

Android用マテリアルコンポーネントは、Androidのデザインサポートライブラリのドロップイン代替品です。

あなたのを追加しますbuild.gradle

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

次に、クラスを使用しcom.google.android.material.bottomsheet.BottomSheetBehaviorます。

レイアウトでは、次の属性を使用できます。

    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    ..>

または

app:layout_behavior="@string/bottom_sheet_behavior"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.