Разработка Android. CardView не работает? - PullRequest
0 голосов
/ 09 октября 2019
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:background="#F3F3F3F3"
    android:layout_height="wrap_content">

    <android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/dersName"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp"
            android:layout_marginRight="10dp"/>

    </android.support.v7.widget.CardView>

</LinearLayout>

К сожалению, ProjectTry остановлен

Также я добавил этот код

implementation 'com.android.support:recyclerview-v7:28.0.0'
//noinspection GradleCompatible
implementation 'com.android.support:cardview-v7:28.0.0'

Компиляция прошла успешно, но это дает мне, к сожалению, ProjectTryостановился Как мне решить эту проблему? Когда я печатаю

Ответы [ 2 ]

1 голос
/ 09 октября 2019

У меня была такая же проблема после обновления моей библиотеки до androidX

implementation 'androidx.cardview:cardview:1.0.0'

Чтобы преодолеть эту проблему.

<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
    android:id="@+id/dersName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginRight="10dp"/>
</androidx.cardview.widget.CardView>
0 голосов
/ 09 октября 2019

Используйте этот код

   <androidx.cardview.widget.CardView 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        app:elevation="5dp">
    </androidx.cardview.widget.CardView>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...