我将com.kizitonwose.calendarview.CalendarView用于自定义日历。该文档说,应该通过属性app:cv_dayViewResource
传递日历布局的日期,这是我的布局:
<com.kizitonwose.calendarview.CalendarView
android:id="@+id/calendar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
app:cv_dayViewResource="@layout/calendar_day_view"
app:cv_inDateStyle="allMonths"
app:cv_orientation="horizontal"
app:cv_outDateStyle="endOfRow"
app:layout_constraintTop_toBottomOf="@id/calendarContainer"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:cv_scrollMode="paged">
我的日历日视图如下:
<?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">
<ImageView
android:id="@+id/dayBackground"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/selector_background"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintVertical_bias="0.978">
....
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
我每天都会设置一个最初不可见的背景。单击一天后,背景就会变得可见。
我希望此背景与其他日子重叠(尤其是在较小的设备上),因为我正在以编程方式为此背景设置一个高度,该高度可能大于父母的身高。
我尝试将属性clipChildren = "false"
设置为imageView
的父级布局,并使用环绕同一视图的重复父级。但是,这不起作用。
我怀疑是因为calendar_day_view
内的com.kizitonwose.calendarview.CalendarView
被作为属性而不是直接插入布局中。
有没有办法解决这个问题?