diff options
| -rw-r--r-- | core/res/res/layout/date_picker_material.xml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/res/res/layout/date_picker_material.xml b/core/res/res/layout/date_picker_material.xml index 763f2a416bfb..dd8a45d26172 100644 --- a/core/res/res/layout/date_picker_material.xml +++ b/core/res/res/layout/date_picker_material.xml @@ -25,10 +25,16 @@ android:layout_width="match_parent" android:layout_height="wrap_content" /> - <include - layout="@layout/date_picker_view_animator_material" - android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1" /> + <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> |