0

我正在尝试在同一布局中使用一个日期选择器和两个时间选择器,但仅显示布局中的第一个。我确定我的布局一定有问题,但还没有发现错误。

布局.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#B5B5B5"
    android:orientation="vertical" >

    <include layout="@layout/actionbar_layout" />

    <LinearLayout
        android:id="@+id/new_conference_date"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#f8f9fe"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/new_conference_date_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="date:"
            android:textColor="#000000" />

        <TextView
            android:id="@+id/new_conference_date_value"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textColor="#000000" />

        <Button
            android:id="@+id/new_conference_date_picker"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/new_conference_start"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#f8f9fe"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/new_conference_start_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="start:"
            android:textColor="#000000" />

        <TextView
            android:id="@+id/new_conference_start_value"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textColor="#000000" />

        <Button
            android:id="@+id/new_conference_start_picker"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/new_conference_end"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#f8f9fe"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/new_conference_end_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="end:"
            android:textColor="#000000" />

        <TextView
            android:id="@+id/new_conference_end_value"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textColor="#000000" />

        <Button
            android:id="@+id/new_conference_end_picker"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="" />
    </LinearLayout>

</LinearLayout>
4

2 回答 2

1

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#B5B5B5"
android:orientation="vertical" >

<include layout="@layout/actionbar_layout" />

<LinearLayout
    android:id="@+id/new_conference_date"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f8f9fe"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/new_conference_date_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="date:"
        android:textColor="#000000" />

    <TextView
        android:id="@+id/new_conference_date_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""
        android:textColor="#000000" />

    <Button
        android:id="@+id/new_conference_date_picker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="" />
</LinearLayout>

<LinearLayout
    android:id="@+id/new_conference_start"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f8f9fe"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/new_conference_start_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="start:"
        android:textColor="#000000" />

    <TextView
        android:id="@+id/new_conference_start_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""
        android:textColor="#000000" />

    <Button
        android:id="@+id/new_conference_start_picker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="" />
</LinearLayout>

<LinearLayout
    android:id="@+id/new_conference_end"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f8f9fe"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/new_conference_end_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="end:"
        android:textColor="#000000" />

    <TextView
        android:id="@+id/new_conference_end_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""
        android:textColor="#000000" />

    <Button
        android:id="@+id/new_conference_end_picker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="" />
</LinearLayout>

我只是将内部 LinearLayouts 高度更改为 wrap_content

于 2012-04-23T13:04:41.170 回答
0

您在 layout_width 中有三个具有 match_parent 的 LinearLayout,没有权重。

尝试将下一行添加到那些 LinearLayout 的

        android:layout_weight="1"
于 2012-04-23T13:01:08.847 回答