100

据我了解,在预览阶段的早期,似乎没有办法在CardView没有 Java 破解的情况下仅在 s 上设置 XML 的高度。现在正式发布了,有没有什么方法可以在 XML 中做到这一点而无需编写 Java 代码来设置海拔?

我试过card_view:cardElevation没有效果。当我使用 5.0 的模拟器时,我曾想过一切都很好。但是现在我在我的实际设备上使用正式版,我的所有CardViews都消失了

Pre Lollipop,效果很好。

这是我的完整xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:id="@+id/cv1"
    card_view:cardElevation="4dp"
    android:layout_margin="6dp"
    card_view:cardCornerRadius="3dp"
    android:layout_height="match_parent">
4

6 回答 6

322

它看起来像一个边距/填充问题,尝试将cardUseCompatPadding属性设置为 true。例如:

<android.support.v7.widget.CardView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="6dp"
    card_view:cardUseCompatPadding="true"
    card_view:cardElevation="4dp"
    card_view:cardCornerRadius="3dp">

来自 Android 文档的解释:

CardView 在 L 之前添加了额外的填充以在平台上绘制阴影。

这可能会导致 Card 在 L 和 L 之前的大小不同。如果您需要将 CardView 与其他 View 对齐,您可能需要 api 版本特定的维度资源来解释这些变化。作为替代方案,您可以将 cardUseCompatPadding 标志设置为 true,CardView 将在平台 L 及之后添加相同的填充值。

由于将 cardUseCompatPadding 标志设置为 true 会在 UI 中添加不必要的间隙,因此默认值为 false。

于 2014-11-25T09:55:50.030 回答
17

您必须使用该cardElevation属性。
Androidx 库:

您可以使用MaterialCard官方材料组件库中包含的:

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

在您的布局中:

    <com.google.android.material.card.MaterialCardView
        app:cardElevation="xxdp"
        app:cardUseCompatPadding="true"
        ..>

或者CardView在 androidx 包中:

implementation 'androidx.cardview:cardview:1.x.x'

在您的布局中:

     <androidx.cardview.widget.CardView
        app:cardElevation="xxdp"
        app:cardUseCompatPadding="true"
        ..>

旧支持库

<android.support.v7.widget.CardView
    app:cardElevation="xxdp" 
    app:cardUseCompatPadding="true"
    ..>
于 2014-11-19T13:54:05.937 回答
13

如果你有这条线

android:hardwareAccelerated="false"

在清单应用程序标记中,您的阴影未显示。尝试删除此行

或使用

android:hardwareAccelerated="true"

这对我有用!我希望它也对你有用:)

于 2017-04-09T11:26:39.620 回答
1

它通过添加解决了我

xmlns:card_view="http://schemas.android.com/apk/res-auto"

例如:

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="5dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    card_view:cardCornerRadius="5dp">
于 2018-01-13T21:00:22.577 回答
0

我在卡片视图上添加了一个 app:cardElevation="8dp" 属性,所以它会像:

<android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="160dp"
        android:layout_marginStart="16dp"
        android:layout_marginLeft="16dp"
        android:layout_marginTop="24dp"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp"
        app:cardElevation="8dp"
        app:cardCornerRadius="8dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            android:src="@drawable/kmp_warna1" />

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

希望它会有所帮助

于 2019-04-21T07:10:56.167 回答
0

在cardView中设置

    <android.support.v7.widget.CardView 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="6dp"
card_view:cardUseCompatPadding="true"
card_view:cardElevation="4dp"
card_view:cardCornerRadius="3dp">
于 2021-03-21T11:15:18.737 回答