Как получить доступ к RecyclerView в androidx? - PullRequest
1 голос
/ 14 апреля 2019

Привет, я новичок в разработке для Android и пробую учебник по MVVM, который нашел на YouTube. Пример проекта в видео использует AppCompat, но я конвертировал мой в androidx, потому что из того, что я прочитал, его текущую (?) Версию для использования? Я ошибаюсь с этим мышлением?

В любом случае Часть учебника использует RecyclerView, и я не могу получить к нему доступ в своем файле activity_main.xml, заявив, что v7 является неразрешенным пакетом. android.support.v7.widget.RecyclerView отображается с v7 в виде красного текста. Я знаю, что могу вернуть его к более старым версиям, но, думаю, я пытаюсь заставить это работать, поскольку ожидается, что он знает, как использовать androidx, правильно?

Я не знаю, как добавить RecyclerView в проект, когда мой текущий проект перенесен на androidx.

Что я пробовал:

  • Добавление implementation 'com.android.support:recyclerview-v7:28.0.0' на основе документов
  • Аннулирование кэша и перезапуск

Мои зависимости:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
    implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'

    //RecyclerView
    implementation 'com.android.support:recyclerview-v7:28.0.0'


    // Lifecycle components
    implementation "androidx.lifecycle:lifecycle-extensions:2.1.0-alpha04"
    annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.1.0-alpha04"

    // Room Components
    implementation "androidx.room:room-runtime:2.1.0-alpha06"
    annotationProcessor "androidx.room:room-compiler:2.1.0-alpha06"
}

My activity_main.xml

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

    <view class="android.support.v7.widget.RecyclerView"
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:listitem="@layout/todo_item"/>

</androidx.constraintlayout.widget.ConstraintLayout>

Ответы [ 2 ]

3 голосов
/ 14 апреля 2019

RecyclerView также был перенесен в AndroidX:

  1. Обновление build.gradle:
implementation 'androidx.recyclerview:recyclerview:1.0.0'
  1. Изменить файл макета:
<androidx.recyclerview.widget.RecyclerView> ... </androidx.recyclerview.widget.RecyclerView
0 голосов
/ 14 апреля 2019

Официальный документ: https://developer.android.com/jetpack/androidx/migrate

Шаг 1: Проверьте и установите строки в gradle.properties:

android.useAndroidX=true
android.enableJetifier=true

Шаг 2: Изменить

implementation 'com.android.support:recyclerview-v7:28.0.0'

до

implementation 'androidx.recyclerview:recyclerview:1.0.0' //Update to latest version

И наконец: Изменить тег

 <view class="android.support.v7.widget.RecyclerView"...>

до

<androidx.recyclerview.widget.RecyclerView
     android:id="@+id/recycler_view"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     tools:listitem="@layout/todo_item"/>
...