android – 在父ConstraintLayout中水平居中固定大小的ImageView

前端之家收集整理的这篇文章主要介绍了android – 在父ConstraintLayout中水平居中固定大小的ImageView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个相当简单的布局:一个ConstraintLayout填充整个屏幕,一个大的CardView,在顶部,有一个 ImageView,一半在CardView上,一半在它上面(实际上不是一半,但你明白了).

但是,有两个问题:ImageView粘贴在父级的左侧,我不知道如何使其水平居中 – 我在Google上找到的只是多个元素的链,但我只想让一个居中.

布局编辑器对我来说非常糟糕.我的第一个抱怨是我似乎无法为父母创建约束.然后我尝试通过按下“父母中心”按钮将ImageView水平居中于父级.这会增加CardView的宽度,对ImageView完全没有影响.

当我在它的时候,我怎么能在CardView上面对ImageView进行z-order?

这里的布局:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorPrimaryDark">
<android.support.v7.widget.CardView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginBottom="32dp"
    android:layout_marginEnd="32dp"
    android:layout_marginStart="32dp"
    android:layout_marginTop="160dp"
    app:cardCornerRadius="12dp"
    app:cardElevation="32dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent">

</android.support.v7.widget.CardView>

<ImageView
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_marginTop="40dp"
    android:scaleType="centerCrop"
    android:src="@drawable/re_zero"

    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

谢谢!

解决方法

根据 docs

When you add a constraint to both sides of a view (and the view size
for the same dimension is either “fixed” or “wrap content”),the view
becomes centered between the two anchor points by default.

添加以下约束以ImageView为中心.

app:layout_constraintEnd_toEndOf="parent"

此外,添加比CardView更高的高程修复了z-index,因为高程会覆盖z-index.

原文链接:https://www.f2er.com/android/315778.html

猜你在找的Android相关文章