Android中的日期选择器材料设计问题

时间:2016-02-29 10:57:18

标签: android datepicker material-design android-6.0-marshmallow android-5.1.1-lollipop

我在日期选择器中面临问题。视图从底部切割。

enter image description here

这是我的代码 -

 <!-- Layout that will hold the content of the Tabs -->
            <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <!-- Layout for the DatePicker -->
                <LinearLayout
                    android:id="@+id/date_content"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">

                    <DatePicker
                        android:id="@+id/date_picker"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"

                        android:calendarViewShown="false" />

                </LinearLayout>

                <!-- Layout for the TimePicker -->
                <LinearLayout
                    android:id="@+id/time_content"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">

                    <TimePicker
                        android:id="@+id/time_picker"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />

                </LinearLayout>

            </FrameLayout>

        </ScrollView>

请帮帮我。

注意:在Lollipop和Marshmallow中遇到此问题。

提前致谢。

0 个答案:

没有答案