1

我已经CardView在较旧的 android studio 版本 3.3.1 上尝试了库,并且代码正在运行。模拟器显示正确的图像。但是,我切换到新版本 3.5 中没有显示任何内容CardView,甚至没有显示TextView.

xml代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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"
    android:orientation="vertical"
    android:padding="10dp"
    android:background="#fcfcfc"
    android:gravity="center"
    android:id="@+id/LinearLayout1">

    <!-- A CardView that contains a TextView -->
    <android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:id="@+id/card_view"
        android:layout_gravity="center"
        android:layout_width="200dp"
        android:layout_height="200dp"
        card_view:cardCornerRadius="4dp">

        <TextView
            android:id="@+id/info_text"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.v7.widget.CardView>

</LinearLayout>

摇篮:

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.android.support:cardview-v7:28.0.0'

}
4

3 回答 3

4

你应该使用

<androidx.cardview.widget.CardView //XML Section

添加AndroidX依赖

implementation 'androidx.cardview:cardview:1.0.0'
于 2019-10-21T07:34:52.130 回答
2

不能同时使用 support 和 andriodx 库。

改变

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

implementation 'androidx.cardview:cardview:1.0.0'

androidx.cardview.widget.CardView在您的布局/代码中使用。

有另一种实现CardView
它包含在材料组件库中

只需添加:

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

在您的 xml 中,您可以使用:

 <com.google.android.material.card.MaterialCardView
  ...>

它们不一样:

MaterialCardView 扩展 androidx.cardview.widget.CardView并提供了 CardView 的所有功能,但添加了用于自定义笔画的属性,并默认使用更新的 Material 样式。

于 2019-10-21T07:35:32.967 回答
0

我在 Android Studio 3.5.1 中遇到了同样的问题。它对我有用:

依赖{

`def cardview_version = "1.0.0" 实现 "androidx.cardview:cardview:$cardview_version" }

和 xml:

于 2019-11-17T05:10:01.793 回答