Android - 在布局中将按钮移动到底部

时间:2015-11-15 21:08:48

标签: c# android android-layout android-linearlayout

我在将按钮与布局底部对齐时遇到了一些问题。看这张照片:

Image Layout

正如您所看到的,我需要将此5按钮放在布局的底部。我怎样才能做到这一点?我尝试将布局重力放到底部,但它不起作用。这是我的代码

<?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:background="@android:color/background_light"
android:orientation="vertical"
android:weightSum="100">
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_weight="80">
    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="25"
        android:layout_marginTop="20dp"
        android:text="- How much wood would a woodchuck chuck if a woodchuck could chuck wood?"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:background="@android:color/holo_blue_dark"
        android:paddingTop="20dp"
        android:paddingLeft="5dp" />
</LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_gravity="bottom">
    <Button
        android:id="@+id/btnA"
        android:layout_height="60dp"
        android:text="YOLO"
        android:maxHeight="60dp"
        android:minHeight="60dp"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:textSize="10dp"
        android:background="@android:color/background_dark"
        android:layout_margin="10dp" />
    <Button
        android:id="@+id/btnB"
        android:text=" asda sdas dasd asd asasdasdaCiaoaga gaerg aergae gr earg aerg aerg "
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:textSize="10dp"
        android:layout_height="match_parent"
        android:background="@android:color/background_dark"
        android:layout_margin="10dp" />
</LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_gravity="bottom">
    <Button
        android:id="@+id/btnC"
        android:layout_height="60dp"
        android:text="James Bond"
        android:maxHeight="60dp"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:minHeight="60dp"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:textSize="10dp"
        android:background="@android:color/background_dark"
        android:layout_margin="10dp" />
    <Button
        android:id="@+id/btnD"
        android:layout_height="60dp"
        android:text="Dunno"
        android:maxHeight="60dp"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:minHeight="60dp"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:textSize="10dp"
        android:background="@android:color/background_dark"
        android:layout_margin="10dp" />
</LinearLayout>
<Button
    android:text="Change"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/btnCambia"
    android:background="@android:color/holo_orange_dark" />

3 个答案:

答案 0 :(得分:0)

您可以将它们添加到其他布局并设置

android:layout_height="0dp"
android:layout_weight="1"
android:gravity="bottom"

答案 1 :(得分:0)

在textview的linearlayout和按钮的线性布局之间添加一个空视图,如下所示:

<View
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_weight="1" />

答案 2 :(得分:0)

将main linearlayout标记放在relativelayout中,然后将linearparentbottom设置为true,用于linearlayout。