Android 带有圆角的 CalendarView 仍然给我一个方形的阴影
Android CalendarView with rounded corners still gives me a square looking shadow
所以我一直在尝试在 Android Studio 中使用一些自定义样式来设置 CalendarView 组件的样式,但我遇到了一个奇怪的问题,我找不到答案。
我正在使用一个形状来使 CalendarViews 背景卡具有圆角,但出于某种原因,海拔阴影仍显示为方形。 (见图)此问题在 Android Studio、模拟器或真实设备上可见。因此,我似乎遗漏了什么,但我不明白可能是什么。
如果能就此问题提供任何帮助,我将不胜感激,在此先感谢!
这是我的形状相关代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@color/colorForeground" />
<corners android:radius="10dp" />
</shape>
这是我的布局 XML:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<CalendarView
android:id="@+id/calendarView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:layout_marginEnd="24dp"
android:layout_marginBottom="24dp"
android:background="@drawable/card_background"
android:elevation="5dp" />
</LinearLayout>
</ScrollView>
将 CalendarView
包装在 CardView
而不是 LinearLayout
中
<androidx.cardview.widget.CardView
app:cardCornerRadius="10dp"
app:cardElevation="5dp"
..>
<CalendarView
android:id="@+id/calendarView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/card_background"/>
</androidx.cardview.widget.CardView>
所以我一直在尝试在 Android Studio 中使用一些自定义样式来设置 CalendarView 组件的样式,但我遇到了一个奇怪的问题,我找不到答案。
我正在使用一个形状来使 CalendarViews 背景卡具有圆角,但出于某种原因,海拔阴影仍显示为方形。 (见图)此问题在 Android Studio、模拟器或真实设备上可见。因此,我似乎遗漏了什么,但我不明白可能是什么。
如果能就此问题提供任何帮助,我将不胜感激,在此先感谢!
这是我的形状相关代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@color/colorForeground" />
<corners android:radius="10dp" />
</shape>
这是我的布局 XML:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<CalendarView
android:id="@+id/calendarView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:layout_marginEnd="24dp"
android:layout_marginBottom="24dp"
android:background="@drawable/card_background"
android:elevation="5dp" />
</LinearLayout>
</ScrollView>
将 CalendarView
包装在 CardView
而不是 LinearLayout
<androidx.cardview.widget.CardView
app:cardCornerRadius="10dp"
app:cardElevation="5dp"
..>
<CalendarView
android:id="@+id/calendarView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/card_background"/>
</androidx.cardview.widget.CardView>