在另一个布局的底部对齐布局
Align a layout at the bottom of another
有什么方法可以将 GridView 对齐到 LinearLayout 的底部?我想根据其上方的布局定位 (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>
我认为你应该使用相对布局。
如果您有一个填满整个屏幕的相对布局,您应该能够使用 android:layout_alignParentTop
将 Gridview
移动到布局的顶部。
编辑:
用 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>
做个相对布局就好了。如果你需要它在 TextView
以上,那么就做 android:layout_above
。确保它使用 id,然后输入 TextView
的 id。这应该把它放在 TextView
的正上方。如果您需要保证金,只需输入一个即可。
有什么方法可以将 GridView 对齐到 LinearLayout 的底部?我想根据其上方的布局定位 (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>
我认为你应该使用相对布局。
如果您有一个填满整个屏幕的相对布局,您应该能够使用 android:layout_alignParentTop
将 Gridview
移动到布局的顶部。
编辑:
用 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>
做个相对布局就好了。如果你需要它在 TextView
以上,那么就做 android:layout_above
。确保它使用 id,然后输入 TextView
的 id。这应该把它放在 TextView
的正上方。如果您需要保证金,只需输入一个即可。