将两个 ConstraintLayout 带到 Button 前面
Bring to Button front while having two ConstraintLayout
我正在尝试在 Android 上实现以下设计。
我知道要在那个位置放置按钮,我应该有两个约束布局;一种用于整个更改密码表单,另一种用于更改密码表单而不使用“保存”按钮,然后将“保存”按钮的 Top
和 Bottom
约束设置为第二个 ConstraintLayout。
但是当我这样做时,按钮在表单后面,这就是问题所在:
这是我的 XML:
<android.support.design.widget.CoordinatorLayout 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=".ChangePasswordActivity">
<include
android:id="@+id/changePasswordBar"
layout="@layout/top_bar_full"></include>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.constraint.ConstraintLayout
android:id="@+id/changePasswordCTL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activities_constraint_top_bottom"
android:layout_marginEnd="@dimen/activities_constraint_start_end"
android:layout_marginStart="@dimen/activities_constraint_start_end"
android:layout_marginTop="@dimen/activities_constraint_top_bottom"
android:background="@drawable/radius_background_exchange"
android:elevation="5dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
// some EditText and TextView views here
</android.support.constraint.ConstraintLayout>
<br.com.simplepass.loading_button_lib.customViews.CircularProgressButton
android:id="@+id/changePasswordBT"
style="@style/customButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="32dp"
android:layout_marginStart="32dp"
android:layout_marginTop="8dp"
android:fontFamily="@font/sans_web_medium"
android:text="@string/finish"
android:textAllCaps="false"
android:textColor="@android:color/white"
android:textSize="@dimen/signinup_button_font_size"
app:initialCornerAngle="5dp"
app:layout_constraintBottom_toBottomOf="@+id/changePasswordCTL"
app:layout_constraintEnd_toEndOf="@+id/changePasswordCTL"
app:layout_constraintStart_toStartOf="@+id/changePasswordCTL"
app:layout_constraintTop_toBottomOf="@+id/changePasswordCTL"
app:spinning_bar_color="@android:color/white"
app:spinning_bar_padding="6dp"
app:spinning_bar_width="4dp" />
</android.support.constraint.ConstraintLayout>
</android.support.design.widget.CoordinatorLayout>
当 elevation
不在图片中时,稍后在 XML 文件中定义的视图将绘制 "on top" 先前定义的视图。但是,您的密码表单有 android:elevation="5dp"
,这将覆盖正常的绘图顺序。
要解决这个问题,请同时为按钮添加高度。 android:elevation="5dp"
应该足够了,因为那时它们处于相同的高度并且应该适用正常规则。但您可以提高它的高度,以保证它始终绘制在密码表单之上。
您可以使用 CoordinatorLayout 实现这样的设计。
示例:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="180dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:background="@color/primary" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_camera"
app:layout_anchor="@id/header"
app:layout_anchorGravity="bottom|center_horizontal" />
</android.support.design.widget.CoordinatorLayout>
只需使用以下内容将按钮的布局锚定到库视图的布局:
app:layout_anchor= "id_of_password_form_layout"
表单上有一个 5dp
高度,按钮上没有高度,因此它被部分遮挡了。将按钮高度至少增加到 5dp
.
android:elevation="5dp"
我正在尝试在 Android 上实现以下设计。
我知道要在那个位置放置按钮,我应该有两个约束布局;一种用于整个更改密码表单,另一种用于更改密码表单而不使用“保存”按钮,然后将“保存”按钮的 Top
和 Bottom
约束设置为第二个 ConstraintLayout。
但是当我这样做时,按钮在表单后面,这就是问题所在:
这是我的 XML:
<android.support.design.widget.CoordinatorLayout 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=".ChangePasswordActivity">
<include
android:id="@+id/changePasswordBar"
layout="@layout/top_bar_full"></include>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.constraint.ConstraintLayout
android:id="@+id/changePasswordCTL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activities_constraint_top_bottom"
android:layout_marginEnd="@dimen/activities_constraint_start_end"
android:layout_marginStart="@dimen/activities_constraint_start_end"
android:layout_marginTop="@dimen/activities_constraint_top_bottom"
android:background="@drawable/radius_background_exchange"
android:elevation="5dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
// some EditText and TextView views here
</android.support.constraint.ConstraintLayout>
<br.com.simplepass.loading_button_lib.customViews.CircularProgressButton
android:id="@+id/changePasswordBT"
style="@style/customButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="32dp"
android:layout_marginStart="32dp"
android:layout_marginTop="8dp"
android:fontFamily="@font/sans_web_medium"
android:text="@string/finish"
android:textAllCaps="false"
android:textColor="@android:color/white"
android:textSize="@dimen/signinup_button_font_size"
app:initialCornerAngle="5dp"
app:layout_constraintBottom_toBottomOf="@+id/changePasswordCTL"
app:layout_constraintEnd_toEndOf="@+id/changePasswordCTL"
app:layout_constraintStart_toStartOf="@+id/changePasswordCTL"
app:layout_constraintTop_toBottomOf="@+id/changePasswordCTL"
app:spinning_bar_color="@android:color/white"
app:spinning_bar_padding="6dp"
app:spinning_bar_width="4dp" />
</android.support.constraint.ConstraintLayout>
</android.support.design.widget.CoordinatorLayout>
当 elevation
不在图片中时,稍后在 XML 文件中定义的视图将绘制 "on top" 先前定义的视图。但是,您的密码表单有 android:elevation="5dp"
,这将覆盖正常的绘图顺序。
要解决这个问题,请同时为按钮添加高度。 android:elevation="5dp"
应该足够了,因为那时它们处于相同的高度并且应该适用正常规则。但您可以提高它的高度,以保证它始终绘制在密码表单之上。
您可以使用 CoordinatorLayout 实现这样的设计。
示例:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="180dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:background="@color/primary" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_camera"
app:layout_anchor="@id/header"
app:layout_anchorGravity="bottom|center_horizontal" />
</android.support.design.widget.CoordinatorLayout>
只需使用以下内容将按钮的布局锚定到库视图的布局:
app:layout_anchor= "id_of_password_form_layout"
表单上有一个 5dp
高度,按钮上没有高度,因此它被部分遮挡了。将按钮高度至少增加到 5dp
.
android:elevation="5dp"