0

当我将它的 layout_width 设置为 match_parent 时,我似乎无法弄清楚为什么我不能将 datepicker 和 timepicker 水平居中在分界线下方。

当我将分界线的 layout_width 设置为 wrap_content 时,选择器水平居中。但这条线并没有填满相对视图。

我只是困惑,我不明白发生了什么。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal" >

    <!-- Dividing Line -->
    <TextView
        android:id="@+id/BlueLine"
        android:layout_width="match_parent"
        android:layout_height="2dip"
        android:background="@color/holo_blue_light" />

    <DatePicker
        android:id="@+id/DatePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/BlueLine"
        android:layout_marginRight="40dp" />

    <TimePicker
        android:id="@+id/TimePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/BlueLine"
        android:layout_toRightOf="@+id/DatePicker" />

</RelativeLayout>
4

1 回答 1

1

使用相对布局的任何具体原因?我认为您可以使用线性布局更轻松地完成所需的布局 - 蓝线是垂直的,另一个可以包含日期选择器和时间选择器的线性布局父元素。然后在其父布局元素中水平放置日期选择器和时间选择器。

于 2013-02-28T21:06:05.097 回答