Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b04f111 authored by Kouji Shiotani's avatar Kouji Shiotani Committed by Alan Viverette
Browse files

To enable scroll function at DatePickerDialog

Symptom:
Some date is truncated so can't be selected when setting
display size as large.

Root cause:
For DatePickerDialog can not scroll, not be displayed depending
on the display size.

Solution:
To enable scroll function at DatePickerDialog

Bug: 32533274

Change-Id: I1bb4d024a6b26c00febe35279f442b6aba24458c
parent c8d66036
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -25,10 +25,16 @@
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fadeScrollbars="false"
        android:scrollIndicators="top|bottom">
        <include
            layout="@layout/date_picker_view_animator_material"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />
    </ScrollView>

</LinearLayout>