CardView在预览中显示灰屏?

时间:2019-03-30 20:24:33

标签: android-recyclerview android-cardview

我的Cardview显示灰屏。我能知道这些问题的原因吗?

我尝试使缓存无效并重新启动,但是它不起作用

这是我的cardView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <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="match_parent"
        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>

这是我的预览 enter image description here

1 个答案:

答案 0 :(得分:0)

这是一个粗心的错误,实际上我忘记在我的gradle(app)中添加实现'com.android.support:cardview-v7:28.0.0'。