0

在此处输入图像描述 在此处输入图像描述

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

我尝试失败的代码是:

<?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>

它产生

4

2 回答 2

2

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

结果:

在此处输入图像描述

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

重要提示:不建议将 MATCH_PARENT 用于 ConstraintLayout 中包含的小部件。可以通过使用 MATCH_CONSTRAINT 来定义类似的行为,并将相应的左/右或上/下约束设置为“父”。

于 2018-05-24T21:42:22.763 回答
1

这段代码:

<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. 绝对值

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

于 2018-05-24T21:39:46.600 回答