У меня проблема с тем, что Android DatePicker в моем макете имеет этот огромный верхний край / отступ / заголовок, который я не могу найти способ удалить.
Я пробовал разные стили, поля, отступы, родительские макеты - все, что я мог придумать. Смотрите белый раздел на изображении ниже. Пожалуйста, помогите!
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gray_color"
android:padding="8dp"
android:orientation="vertical">
<TextView
android:id="@+id/txtV_SelectAppointmentDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start"
app:MvxBind="Text ScheduleTimeSlotText;" />
<DatePicker
android:id="@+id/scheduling_date_datePicker"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:datePickerMode="calendar"
android:background="@color/gray_color"/>