我的布局文件:
<?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"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
tools:context=".TurnOnLocation">
<LinearLayout
android:id="@+id/requires_location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@id/turn_on_location">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
app:cardElevation="10dp"
app:cardPreventCornerOverlap="false">
<TextView
android:id="@+id/info_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:paddingStart="60dp"
android:paddingEnd="60dp"
android:textSize="28sp"
android:text="test"
android:textColor="@color/colorPrimary"
android:textAlignment="center"
android:background="@color/colorPrimaryDark" />
</androidx.cardview.widget.CardView>
</LinearLayout>
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/turn_on_location"
android:textColor="@color/colorPrimary"
android:textSize="@dimen/medium_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/turn_on_location"
app:layout_constraintTop_toBottomOf="@id/requires_location"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
我已经指定了app:cardElevation="10dp"
,我相信它是用来渲染阴影的。但是,没有阴影出现。
知道为什么吗?
答案 0 :(得分:1)
您的源代码没有错。阴影应正确渲染。您可能正在布局预览中检查输出。它在渲染方面存在一些问题。请在模拟器或真实设备中运行该应用。
答案 1 :(得分:1)
使用此代码,对我来说就是它的工作!这个想法是在app:cardUserCompatPadding="true"
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@android:color/transparent"
app:cardElevation="4dp"
app:cardUseCompatPadding="true"
app:cardCornerRadius="4dp"
android:layout_marginVertical="@dimen/two_x"
app:cardBackgroundColor="@color/white">
结果
答案 2 :(得分:0)
将以下几行添加到CardView标记中
card_view:cardBackgroundColor="@android:color/white"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true"
答案 3 :(得分:0)
尝试
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
app:cardElevation="10dp"
android:layout_margin="16dp">
</androidx.cardview.widget.CardView
答案 4 :(得分:0)
将此行添加到AndroidManifest
标签中的android:hardwareAccelerated="true"
的{{1}}