Android studio日期选择器缺少“确定”按钮

时间:2017-03-08 08:59:47

标签: android xml android-layout datepicker dialog

我在android 6.0 Marshmallow中遇到日期选择器问题。 问题很简单,在横向模式下,我没有OK按钮。 以下是一些展示问题的图片。 (它与时间选择器完美配合)

平板电脑和手机的问题: The problem on tablet. The problem on mobile.

正如你所看到的,我在顶部有一个微调器,但移除它并没有帮助。

我在系统本身没有这个问题。在设置和设置日期时间它工作正常: Settings, datetime

以下是日期时间片段的布局。

<?xml version="1.0" encoding="utf-8"?>

android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/White"
android:orientation="vertical">

<Spinner
    android:id="@+id/spinner_date_time_choice"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

</Spinner>

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

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

0 个答案:

没有答案