如何让两个自动调整大小的文本视图在中间垂直居中?

How can I get two auto-sized textviews to be centered vertically in the middle?

我想要左边的样子。使用固定的文本大小,我可以毫无问题地创建该布局,但我想要自动调整文本大小。目前我最好的尝试是在右侧生成布局。

我尝试失败的代码是:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/layout1"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@drawable/border"
    android:gravity="center"
    android:orientation="vertical">


    <android.support.v7.widget.AppCompatTextView
        android:id="@+id/TextView1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:gravity="center"
        app:layout_constraintTop_toTopOf="parent"
        android:text="Top"

        app:layout_constraintBottom_toTopOf="@+id/TextView2"
        app:layout_constraintVertical_bias="0"
        app:autoSizeMaxTextSize="40dp"
        app:autoSizeMinTextSize="4dp"
        app:autoSizeTextType="uniform" />
    <android.support.v7.widget.AppCompatTextView
        android:id="@+id/TextView2"
        app:layout_constraintTop_toBottomOf="@+id/TextView1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:gravity="center"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"

        app:layout_constraintBottom_toBottomOf="parent"
        android:text="Bottom"
        app:autoSizeMaxTextSize="24dp"
        app:autoSizeMinTextSize="4dp"
        app:autoSizeTextType="uniform"/>
</android.support.constraint.ConstraintLayout>

它产生

此代码:

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/layout1"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@drawable/border"
    android:gravity="center"
    android:orientation="vertical">


    <android.support.v7.widget.AppCompatTextView
        android:id="@+id/TextView1"
        android:layout_width="0dp"
        android:layout_height="40dp"
        android:gravity="center"
        android:text="Top"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/TextView2"
        app:layout_constraintVertical_chainStyle="packed"
        app:autoSizeMinTextSize="4sp"
        app:autoSizeMaxTextSize="40sp"
        app:autoSizeTextType="uniform" />
    <android.support.v7.widget.AppCompatTextView
        android:id="@+id/TextView2"
        app:layout_constraintTop_toBottomOf="@+id/TextView1"
        android:layout_width="0dp"
        android:layout_height="24dp"
        android:gravity="center"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:text="Bottom"
        app:autoSizeMaxTextSize="24sp"
        app:autoSizeMinTextSize="4sp"
        app:autoSizeTextType="uniform"/>
</android.support.constraint.ConstraintLayout>

应该给你你想要达到的目标。如果您需要更多帮助,请告诉我。

更新 因此,经过大量搜索后,您似乎只能拥有:

  1. match_parent
  2. 0dp (match_constraint)
  3. 绝对值

对于 autoSizeTextView 的 layout_widthlayout_height。如果是我,我会使用绝对值,因为您知道 autoSizeMaxTextSize 值。我已经更新了我的代码以反映该更改。让我知道这是否适合你。此外,将 autoSize 属性设置为 dp 会破坏目的,因为它始终是最大尺寸,这就是我将其更改为 sp

的原因

最简单的方法是改变两个 TextViews 的重力,使第一个位于其区域的底部中心,第二个位于顶部中心。要实现它,您应该在第一个 TextView 上设置 android:gravity="bottom|center_horizontal",在第二个上设置 android:gravity="top|center_horizontal"

结果:

作为旁注,不建议将 match_parent 用于文档中提到的 ConstraintLayout 的 children:

Important: MATCH_PARENT is not recommended for widgets contained in a ConstraintLayout. Similar behavior can be defined by using MATCH_CONSTRAINT with the corresponding left/right or top/bottom constraints being set to "parent".