将布局对齐另一个底部

时间:2015-04-13 14:20:47

标签: android margins

有没有办法可以在LinearLayout的底部对齐GridView?我想根据它上面的布局来定位(marginTop)GridView,而不是屏幕的顶部。以下是我的代码。感谢

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:background="@drawable/app_background">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp">
    <ImageView
        android:id="@+id/begin_tour"
        android:layout_width="fill_parent"
        android:layout_height="140dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/begin_tour_i"
        android:scaleType="centerCrop" />
 </LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:baselineAligned="false"
    android:orientation="horizontal"
    android:layout_marginTop="160dp" >
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <GridView
            android:id="@+id/gridview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:verticalSpacing="0dp"
            android:horizontalSpacing="0dp"
            android:stretchMode="columnWidth"
            android:numColumns="2"
            android:background="@drawable/grid_border"/>

    </FrameLayout>
</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:baselineAligned="true"
    android:orientation="vertical"
    android:layout_marginTop="0dp"
    android:layout_alignParentBottom="true" >

    <TextView
        android:id="@+id/link_to_page_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="5"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:textColor="#000000"
        android:textStyle="bold"
        android:textSize="20dip"
        android:textIsSelectable="true" />
</LinearLayout>

</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

我认为你应该使用相对布局。

如果您的相对布局填满整个屏幕,则应该可以使用android:layout_alignParentTopGridview移动到布局的顶部。

修改 请尝试使用layout_above

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:background="@drawable/app_background">

    <LinearLayout
         android:orientation="vertical"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="10dp">

        <ImageView
            android:id="@+id/begin_tour"
            android:layout_width="fill_parent"
            android:layout_height="140dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/begin_tour_i"
            android:scaleType="centerCrop" />

    </LinearLayout>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="false"
        // HERE 
        android:layout_alignParentTop="true"
        android:layout_above="@+id/botlayout"
        android:layout_marginTop="160dp" >

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <GridView
                android:id="@+id/gridview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:verticalSpacing="0dp"
                android:horizontalSpacing="0dp"
                android:stretchMode="columnWidth"
                android:numColumns="2"
                android:background="@drawable/grid_border"/>

        </FrameLayout>
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        // HERE
        android:id="@+id/botlayout"
        android:baselineAligned="true"
        android:layout_marginTop="0dp"
        android:layout_alignParentBottom="true" >

        <TextView
            android:id="@+id/link_to_page_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="5"
            android:ellipsize="marquee"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:textColor="#000000"
            android:textStyle="bold"
            android:textSize="20dip"
            android:textIsSelectable="true" />

    </RelativeLayout>

</RelativeLayout>

答案 1 :(得分:1)

只做相对布局。如果您需要TextView以上,那么只需android:layout_above。确保其使用id,然后输入TextView的ID。这应该在TextView之上。如果您需要保证金,只需将其中一个。