将按钮定位到约束布局的底部

时间:2018-02-13 23:09:16

标签: android layout constraints

我试图将两个按钮放在约束布局的底部。在Android Studio的“设计”视图中,一切看起来都不错,但是当我在调试中运行应用程序时,按钮看起来就像是与屏幕顶部的最后一个字段对齐。我已经尝试了指南和障碍,但无法在我的工作室版本(3.0.1)中使用障碍。如果我尝试用显示屏顶部的按钮点亮,当我切换到横向模式时它们会消失。有什么建议,或者我应该在这个问题上采用其他类型的布局?感谢

我的设计图片

My design image

我的代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
android:id="@+id/location_detail"
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:fitsSystemWindows="true">

<android.support.constraint.Guideline
    android:id="@+id/guideline"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_begin="10dp"
    app:layout_constraintHeight_min="?attr/actionBarSize"
    app:layout_constraintTop_toTopOf="parent"/>


<TextView
    android:id="@+id/location_name_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:labelFor="@+id/location_name"
    android:text="@string/location_name_title"
    app:layout_constraintBaseline_toBaselineOf="@+id/location_name"
    app:layout_constraintLeft_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/guideline"/>

<EditText
    android:id="@+id/location_name"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:ems="13"
    android:inputType="textPersonName"
    app:layout_constraintLeft_toRightOf="@+id/guideline2"
    app:layout_constraintTop_toBottomOf="@+id/guideline"/>

<TextView
    android:id="@+id/location_region_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/location_region_title"
    app:layout_constraintBaseline_toBaselineOf="@+id/location_region"
    app:layout_constraintLeft_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/location_name_title"/>

<TextView
    android:id="@+id/location_region"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:text="@string/location_detail_region"
    app:layout_constraintLeft_toRightOf="@+id/guideline2"
    app:layout_constraintTop_toBottomOf="@+id/location_name"/>

<TextView
    android:id="@+id/location_country_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/location_country_title"
    app:layout_constraintBaseline_toBaselineOf="@+id/location_country"
    app:layout_constraintLeft_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/location_region_title"/>

<TextView
    android:id="@+id/location_country"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:text="@string/location_detail_country"
    app:layout_constraintLeft_toRightOf="@+id/guideline2"
    app:layout_constraintTop_toBottomOf="@+id/location_region"/>

<TextView
    android:id="@+id/location_latitude_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/location_detail_latitude"
    app:layout_constraintBaseline_toBaselineOf="@+id/location_latitude"
    app:layout_constraintLeft_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/location_country_title"/>

<TextView
    android:id="@+id/location_latitude"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:text="@string/location_latitude_title"
    app:layout_constraintLeft_toRightOf="@+id/guideline2"
    app:layout_constraintTop_toBottomOf="@+id/location_country"/>

<TextView
    android:id="@+id/location_longitude_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/location_longitude_title"
    app:layout_constraintBaseline_toBaselineOf="@+id/location_longitude"
    app:layout_constraintLeft_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/location_latitude_title"/>

<TextView
    android:id="@+id/location_longitude"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:text="@string/location_detail_longitude"
    app:layout_constraintLeft_toRightOf="@+id/guideline2"
    app:layout_constraintTop_toBottomOf="@+id/location_latitude"/>

<android.support.constraint.Guideline
    android:id="@+id/guideline2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_constraintGuide_percent="0.27"/>

<android.support.v7.widget.AppCompatButton
    android:id="@+id/delete_location_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:onClick="saveLocation"
    android:text="@string/location_delete_button"
    app:layout_constraintEnd_toStartOf="@+id/save_location_button"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintBottom_toBottomOf="parent" />


<android.support.v7.widget.AppCompatButton
    android:id="@+id/save_location_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:text="@string/location_save_button"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/delete_location_button"
    app:layout_constraintBottom_toBottomOf="parent" />


</android.support.constraint.ConstraintLayout>

问题的屏幕截图

Screen Shot of problem

有关此屏幕的其他信息。有一个简短显示的Toast消息。此外,如果您想编辑位置名称,则应显示软键盘。

我正在测试运行Android 5.1.1的Nexus 7,但是当我在运行8.1.0的Nexus 6P上运行时,行为是相同的。

1 个答案:

答案 0 :(得分:0)

问题解决了。我一直在使用FragmentTransaction替换方法在我的应用程序中处理多个片段,以将每个新片段视图放入我的一个content_frame中。问题不在于上面提到的约束布局,而在于我使用的容器视图。问题容器是:

<?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"
tools:context="xxx.xxxx.weather.WeatherActivity">

<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/my_toolbar"/>

</android.support.constraint.ConstraintLayout>

用RelativeLayout替换ConstraintLayout(并删除layout_constraint内容)解决了这个问题。显然,另一个ConstraintLayout中的ConstraintLayout令人困惑。最初,我没有考虑容器视图,因为我使用的其他片段似乎没有任何问题。

以前我曾尝试将FrameLayout高度更改为“match_parent”,但这会导致其他问题,例如其他片段根本没有显示。

感谢所有看过这个的人。