0

我有 2 个碎片,第一个里面有第二个。这是第一个:

<?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:background="@drawable/gradient_details_bg"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/fragmentDetailTitle"
        style="@style/textTitleDetailStyle" />

    <LinearLayout
        android:id="@+id/detailSubObjectFrame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:gravity="center"
        android:orientation="vertical" >
    </LinearLayout>

    <Button
        android:id="@+id/fragmentDetailButtonGo"
        style="@style/goButtonStyle" />

</RelativeLayout>

在布局 detailSubObjectFrame 中,我还有其他片段。在这种特定情况下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sub_take_error_Layout"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
     >

    <LinearLayout
        android:id="@+id/numberErrorLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:orientation="horizontal" >

        <com.mypackage.NumberPickerCustom
            android:id="@+id/numberPickerCustomRandom"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            max="100"
            min="1"
            value="30" />

        <TextView
            android:id="@+id/moreText"
            style="@style/textOnSubmenu"
            android:textSize="20sp"
            android:text="@string/moreErrorText" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/myLayoutTop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/numberOfQuestion"
            style="@style/textOnSubmenu"
            android:textSize="20sp"
            android:text="@string/numberOfErrorQuestionText" />

        <TextView
            android:id="@+id/numberOfQuestionValue"
            style="@style/textOnSubmenu"
            android:textSize="20sp"
            android:text="6" />
    </LinearLayout>

</RelativeLayout>

我希望布局“myLayoutTop”将放置在第一个片段 fragmentDetailTitle 的 textview 下方。(不从中心移动其他布局)。如您所见,我尝试了 layout_alignParentTop 但没有奏效。如果需要,我可以完全改变第二个片段的布局,我的约束是 numberErrorLayout 应该保持(就像现在一样)在屏幕的中心。

4

1 回答 1

0

我刚刚更改了 FrameLayout 中 detailSubObjectFrame 和 LinearLayout 中 sub_take_error_Layout 的布局。在我使用 numberErrorLayout 和 myLayoutTop 的属性重力之后。

于 2013-09-28T11:05:53.843 回答