0

我有线性布局,它充当相对布局的父级。相对布局由一些按钮和东西组成。我想在线性布局的底部对齐相对布局(包含按钮的面板)。线性布局只包括一个 ImageView ,然后相对布局应该在底部对齐。

但是当我尝试 android:layout_alignParentBottom="true"在相对布局中设置时,IDE Prompts 代码是错误的。我该如何实现这一点,请帮忙

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="250dp"
        android:scaleType="fitStart"
        android:src="@drawable/jellyfish" />

    <RelativeLayout

        android:layout_width="318dp"
        android:layout_height="164dp"
        android:layout_margin="5dp"
        android:background="@drawable/backgrad"
        android:orientation="vertical" >

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="20dp"
            android:layout_marginLeft="34dp"
            android:onClick="clickme"
            android:text="Button" />

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_marginTop="16dp"
            android:layout_toLeftOf="@+id/button1"
            android:onClick="textclick"
            android:src="@drawable/text" />

        <Button
            android:id="@+id/button2"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/button1"
            android:layout_alignBottom="@+id/button1"
            android:layout_centerHorizontal="true"
            android:onClick="wmark"
            android:text="Save" />


    </RelativeLayout>

</LinearLayout>

在此处输入图像描述

4

4 回答 4

1

可能重复:如何在 LinearLayout 中实现 alignParentBottom="true" 属性

设置时android:layout_alignParentBottom="true",您正在尝试使用 LinearLayout 的方法。但 LinearLayout 不提供alignParentBottom.

副本中的答案说要替换

android:layout_alignParentBottom="true"

经过

android:gravity="bottom"
于 2013-07-22T08:08:06.740 回答
0

将以下内容添加到您的父线性布局 xml:

android:gravity="bottom"
于 2013-07-22T08:05:47.510 回答
0

我已经回答了这样的另一个主题,解决方案是将权重为 1 的视图放在相对布局之上,如下所示:

    <View android:id="@+id/emptySpace"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    />
于 2016-02-05T10:32:42.023 回答
0

尝试将您的 ImageView 包含在线性布局中并添加

android:layout_alignParentBottom="true"

在您的相对布局中。

于 2017-06-13T09:34:18.497 回答