是否可以将视图移动到LinearLayout的最左下角?

时间:2018-09-17 16:28:30

标签: android android-linearlayout

所以,这是我的视图

enter image description here

使用XML代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">

    <TextView
        style="?android:listSeparatorTextViewStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/crime_title_label" />

    <EditText
        android:id="@+id/crime_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/crime_title_hint" />

    <TextView
        style="?android:listSeparatorTextViewStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/crime_details_label" />

    <Button
        android:id="@+id/crime_date"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <CheckBox
        android:id="@+id/crime_solved"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/crime_solved_label" />

</LinearLayout>  

我想在最左下角添加一个按钮。但是我不确定在垂直方向的线性布局中是否可以实现。我想到的唯一不更改布局类型的方法就是将这部分添加到我想要的按钮中:android:layout_gravity="bottom|left",但这并不能解决问题。有什么建议么?如果可以在线性布局中解决该问题,我将感到高兴。

1 个答案:

答案 0 :(得分:1)

我认为这是最短的解决方案,尽管我无法想到不包括其他布局的任何东西。将其添加到xml的末尾(仍在LinearLayout中)。

<FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom" />
    </FrameLayout>