0

我有以下 xml 布局:

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#FF99E6"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dip"
            android:layout_marginTop="5dip"
            android:text="Was patient"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:background="#298EB5"
            android:orientation="horizontal" >
        </LinearLayout>

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="7dip"
            android:layout_marginTop="10dip"
            android:text="Hier wat extra info"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:background="#FF6633"
            android:orientation="vertical" >

            <TimePicker
                android:id="@+id/timePicker1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:background="#298EE5"
            android:orientation="horizontal" >

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

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

这会产生以下输出:

在此处输入图像描述

现在我想将该日期选择器放在橙色容器的中心。我将属性设置为居中,但这只是水平居中。

我只能使用线性布局,所以请不要建议使用相对布局:)

我已经为此苦苦挣扎了一段时间,所以任何帮助将不胜感激!

谢谢

4

5 回答 5

2

删除android:layout_gravity你的timepickerorange container并设置android:gravity="center"为你的orange container,使其居中。

android:gravity定义 的重力childs,同时layout_gravity定义layout/view自身的重力。

于 2012-09-12T08:17:34.897 回答
0

尝试,

android:layout_gravity="center_vertical"
于 2012-09-12T08:14:41.023 回答
0

用这个,

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:background="#FF6633"
            android:gravity="center"
            android:orientation="vertical" >

            <TimePicker
                android:id="@+id/timePicker1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center" />
于 2012-09-12T08:18:12.863 回答
0

android:layout_gravity子级可以提供给其父级的标准重力常数。

android:gravity 指定如何在对象本身内放置对象的内容,包括 x 轴和 y 轴。

所以在你的橙色LinearLayout使用android:gravity而不是android:layout_gravity.

于 2012-09-12T08:19:07.657 回答
0

将时间选择器的父线性布局的重力设置为中心,如下所示

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:background="#FF6633"
        android:gravity="center"
        android:orientation="vertical" >
于 2012-09-12T08:24:50.313 回答