在这里我创建一个应用程序,从单个页面中的日期和日期选择器,所以我想在一个对话框中显示四个视图。我使用LinearLayout获得解决方案,但选择分隔高度是大,所以如何更改为高度日期选择器选择divider.here在快照我将显示问题。 下面是我的xml代码。
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="From Date Time"
android:textStyle="bold" />
<DatePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:calendarViewShown="false"
android:datePickerMode="spinner"
android:scrollbarSize="@dimen/tab_min_width" />
<TimePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:timePickerMode="spinner" />
<View
android:layout_width="match_parent"
android:layout_height="0.2dp"
android:layout_margin="10dp"
android:background="@android:color/black" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="To Date Time"
android:textStyle="bold" />
<DatePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:calendarViewShown="false"
android:datePickerMode="spinner" />
<TimePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:timePickerMode="spinner" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="OK" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="Cancel" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
不知道任何其他方法,但可能,创建了一个扩展TimePicker的CustomTimePicker类,然后覆盖onDraw方法 - 或 - 更改用于它的高度的变量值并保持其余部分相同?