How can I create layout with equal width and height for CalendarView
? Answers to the same question for ImageView
don't work with CalendarView
:
ImageView - have height match width?
Current layout:
<CalendarView
android:id="@+id/calendarView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />