Android Studio无法正确绘制按钮

时间:2019-07-08 08:55:12

标签: android button constraints draw shift

在我的Android Studio项目中,我有一个带有约束布局的片段。这是XML。

        <android.support.constraint.ConstraintLayout
            android:id="@+id/pinLayout"
            android:layout_width="match_parent"
            android:layout_height="250dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/topLayout">

            <android.support.constraint.ConstraintLayout
                android:layout_width="0dp"
                android:layout_height="0dp"
                app:layout_constraintBottom_toTopOf="@+id/constraintLayout"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                tools:visibility="visible">

                <TextView
                    android:id="@+id/numberTextView"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="8dp"
                    android:gravity="top"
                    android:text="00000000"
                    android:textColor="@color/appTintColor"
                    android:textSize="18sp"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintHorizontal_bias="0.5"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />
            </android.support.constraint.ConstraintLayout>

            <android.support.constraint.ConstraintLayout
                android:id="@+id/constraintLayout2"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHeight_percent="0.4"
                app:layout_constraintStart_toStartOf="parent">

                <Button
                    android:id="@+id/confirmButton"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/rounded_corner_shape_tint"
                    android:paddingLeft="16dp"
                    android:paddingRight="16dp"
                    android:text="Confirm Pin"
                    android:textColor="@color/appMainColor"
                    android:textSize="14sp"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintHorizontal_bias="0.5"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />
            </android.support.constraint.ConstraintLayout>

            <android.support.constraint.ConstraintLayout
                android:id="@+id/constraintLayout"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                app:layout_constraintBottom_toTopOf="@+id/constraintLayout2"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHeight_percent="0.4"
                app:layout_constraintStart_toStartOf="parent">

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

                    <TextView
                        android:id="@+id/pinView1"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_weight="0.25"
                        android:gravity="center"
                        android:text="-"
                        android:textColor="@color/appTintColor"
                        android:textSize="36sp" />

                    <TextView
                        android:id="@+id/pinView2"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_weight="0.25"
                        android:gravity="center"
                        android:text="-"
                        android:textColor="@color/appTintColor"
                        android:textSize="36sp" />

                    <TextView
                        android:id="@+id/pinView3"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_weight="0.25"
                        android:gravity="center"
                        android:text="-"
                        android:textColor="@color/appTintColor"
                        android:textSize="36sp" />

                    <TextView
                        android:id="@+id/pinView4"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_weight="0.25"
                        android:gravity="center"
                        android:text="-"
                        android:textColor="@color/appTintColor"
                        android:textSize="36sp" />
                </LinearLayout>
            </android.support.constraint.ConstraintLayout>

        </android.support.constraint.ConstraintLayout>

如您所见,“确认”按钮位于其父项的约束中心。

enter image description here

但是当我在Xperia z5 Compact中运行应用程序时,布局检查器显示按钮未居中。

enter image description here

为什么会发生以及如何解决?

注意,如果我要删除其父constarintLayout的numberTextView,该问题将消失。 注意,在我的代码中,我以编程方式将文本设置为numberTextView。如果我在注释该代码(即不以编程方式设置文本)时,按钮会正确绘制。

4 个答案:

答案 0 :(得分:1)

从xml中的按钮布局中删除以下行。

app:layout_constraintHorizontal_bias="0.5"

水平偏差: 这样一来,我们就可以使用偏差值沿水平轴定位视图,该值将相对于其受约束的位置。

有关约束布局的更多信息,请参见 this article

答案 1 :(得分:1)

app:layout_constraintHorizontal_bias="0.5"

layout_constraintHorizontal_bias这将使中心偏离很小。尝试下面给出的代码,

            <Button
                android:id="@+id/confirmButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/rounded_corner_shape_tint"
                android:paddingLeft="16dp"
                android:paddingRight="16dp"
                android:text="Confirm Pin"
                android:textColor="@color/appMainColor"
                android:textSize="14sp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

答案 2 :(得分:1)

android:id="@+id/pinLayout"的{​​{1}}较高,这就是为什么按钮不位于垂直中心的原因。尝试下面给出的代码。

250dp

答案 3 :(得分:0)

通过将XML中的所有ConstraintLayout更改为RelativeLayout尝试使用RelativeLayout而不是ConstraintLayout

<android.support.constraint.ConstraintLayout >
...
Your content
...
</android.support.constraint.ConstraintLayout>

<RelativeLayout >
...
Your content
...
</RelativeLayout>

然后您可以将按钮设置为父级的中心

android:layout_centerInParent="true"

对于您的TextView pinView1,pinView2,pinView3和pinView4,您只需将其放在LinearLayout中即可。