如何将LinearLayout与活动底部对齐

时间:2018-06-15 19:34:55

标签: android layout android-constraintlayout

我有以下activity_main.xml文件,我想将LinearLayout内的三个按钮对齐到页面底部。我试过layout_alignParentBotton =“true” 但这不起作用..是否有任何设置可以让我将linearLayout带到活动的底部? 感谢

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/blueBackground"
    tools:context="org.pctechtips.george.dailyquotes.MainActivity">

        <TextView
            android:id="@+id/main_title"
            android:layout_width="368dp"
            android:layout_height="wrap_content"
            android:text="Daily Quotes"
            android:textSize="30dp"
            android:textColor="@color/whiteText"
            android:textAlignment="center"
            tools:layout_editor_absoluteX="8dp"
            tools:layout_editor_absoluteY="16dp" />

        <ImageView
            android:id="@+id/main_image"
            android:layout_width="100dp"
            android:layout_height="100dp"
            app:srcCompat="@mipmap/ic_launcher_round"
            android:layout_centerHorizontal="true"
            tools:layout_editor_absoluteY="89dp"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintLeft_toLeftOf="parent" />


        <TextView
            android:id="@+id/quote_text"
            android:layout_width="368dp"
            android:layout_height="wrap_content"
            android:text="This is a random text"
            android:textColor="@color/whiteText"
            android:textSize="20dp"
            tools:layout_editor_absoluteX="8dp"
            tools:layout_editor_absoluteY="246dp" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_alignParentBottom="true">

            <ImageView
                android:id="@+id/previous_quote"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:srcCompat="@android:drawable/ic_media_previous"
                tools:layout_editor_absoluteX="8dp"
                tools:layout_editor_absoluteY="473dp" />

            <ImageView
                android:id="@+id/share_quote"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                tools:layout_editor_absoluteX="8dp"
                tools:layout_editor_absoluteY="473dp" />

            <ImageView
                android:id="@+id/next_quote"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:srcCompat="@android:drawable/ic_media_next"
                tools:layout_editor_absoluteX="8dp"
                tools:layout_editor_absoluteY="473dp" />

        </LinearLayout>
</android.support.constraint.ConstraintLayout>

6 个答案:

答案 0 :(得分:2)

android:layout_alignParentBottom="true"更改为app:layout_constraintBottom_toBottomOf="parent"。下面是一个示例,它还将该布局拉伸到父级的宽度并使视图居中于其中

...
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:gravity="center"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintBottom_toBottomOf="parent">
...

答案 1 :(得分:1)

将以下约束添加到线性布局。

 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintEnd_toEndOf="parent"
 app:layout_constraintStart_toStartOf="parent"

您的一些观点不是正确的约束。如果您想使用RelativeLayout,请尝试以下解决方案。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/blueBackground"
    tools:context="org.pctechtips.george.dailyquotes.MainActivity">

    <TextView
        android:id="@+id/main_title"
        android:layout_width="368dp"
        android:layout_height="wrap_content"
        android:text="Daily Quotes"
        android:textSize="30dp"
        android:textAlignment="center"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="16dp" />

    <ImageView
        android:id="@+id/main_image"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_below="@+id/main_title"
        app:srcCompat="@mipmap/ic_launcher_round"
        android:layout_centerHorizontal="true"
        />


    <TextView
        android:id="@+id/quote_text"
        android:layout_width="match_parent"
        android:layout_below="@+id/main_image"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:text="This is a random text"
        android:textSize="20dp"

        />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true">

        <ImageView
            android:id="@+id/previous_quote"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@android:drawable/ic_media_previous"
            />

        <ImageView
            android:id="@+id/share_quote"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

        <ImageView
            android:id="@+id/next_quote"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@android:drawable/ic_media_next"
            />

    </LinearLayout>
</RelativeLayout>

答案 2 :(得分:0)

用RelativeLayout

替换父约束布局

答案 3 :(得分:0)

尝试以这种方式编辑布局:

<?xml version="1.0" encoding="utf-8"?>     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:background="@color/blueBackground" tools:context="org.pctechtips.george.dailyquotes.MainActivity"> 
<LinearLayout android: layout_weight="1" android orientation="vertical" android:layout_width="match_parent" android:layout_height="0dp">
<TextView android:id="@+id/main_title" android:layout_width="368dp" android:layout_height="wrap_content" android:text="Daily Quotes" android:textSize="30dp" android:textColor="@color/whiteText" android:textAlignment="center" /> <ImageView android:id="@+id/main_image" android:layout_width="100dp" android:layout_height="100dp" app:srcCompat="@mipmap/ic_launcher_round" /> <TextView android:id="@+id/quote_text" android:layout_width="368dp" android:layout_height="wrap_content" android:text="This is a random text" android:textColor="@color/whiteText" android:textSize="20dp"/>
</LinearLayout>
 <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_alignParentBottom="true"> <ImageView android:id="@+id/previous_quote" android:layout_width="wrap_content" android:layout_height="wrap_content" app:srcCompat="@android:drawable/ic_media_previous"/> <ImageView android:id="@+id/share_quote" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <ImageView android:id="@+id/next_quote" android:layout_width="wrap_content" android:layout_height="wrap_content" app:srcCompat="@android:drawable/ic_media_next"/> </LinearLayout> </LinearLayout>

请注意线性布局中的布局权重。

答案 4 :(得分:0)

您的根布局是var result = A.FullOuterJoin(B, a => (string)a["X"], b => (string)b["X"], (k, a, b) => a.Merge(b)) .ToList(); ,因此您应该使用documentation中列出的相应约束来定位其子项。要将ConstraintLayout置于底部中心并包装其内容,您应使用以下内容:

LinearLayout

您还可以通过完全删除<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constrainedWidth="true" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"> 并将水平链中的三个LinearLayout限制为根ImageViews的直接子项来优化您的布局:

ConstraintLayout

答案 5 :(得分:0)

试试这个..

<?xml version="1.0" encoding="utf-8"?><?xml version="1.0" encoding="utf- 
8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_blue_light">

<TextView
    android:id="@+id/main_title"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="Daily Quotes"
    android:textAlignment="viewStart"
    android:textColor="@android:color/white"
    android:textSize="30dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent" />

<ImageView
    android:id="@+id/main_image"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_centerHorizontal="true"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:srcCompat="@mipmap/ic_launcher_round"
    tools:layout_editor_absoluteY="89dp" />


<TextView
    android:id="@+id/quote_text"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="30dp"
    android:text="This is a random text"
    android:textColor="@android:color/white"
    android:textSize="20dp"
    app:layout_constraintTop_toBottomOf="@id/main_image" />

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="horizontal"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent">

    <ImageView
        android:id="@+id/previous_quote"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:srcCompat="@android:drawable/ic_media_previous" />

    <ImageView
        android:id="@+id/share_quote"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/next_quote"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:srcCompat="@android:drawable/ic_media_next" />

</LinearLayout>
</android.support.constraint.ConstraintLayout>