当TextView的居中文本很长时,Android wrap_content太宽

时间:2017-02-05 09:15:45

标签: android android-layout text-alignment layout-gravity

您可以使用layout_gravitygravity进行文字居中。使用layout_gravity

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:breakStrategy="balanced"
/>

短篇文章将显示为:

[          Hello          ]

虽然长期延伸将是:( A

[ One lemming looking     ]
[ up.                     ]

所以你可以添加:

    android:gravity="center"

你会得到:( B

[   One lemming looking   ]
[           up.           ]

但是,我想实现这个目标:( C

[   One lemming looking   ]
[   up.                   ]

A 看起来不太好,因为文字不会显示居中。如果布局中有更多居中元素,则尤其如此。

B 看起来不太好,因为非常短的单词“up”被放入中心。即使文本较长,也看起来不太好,因为文本有两个锯齿状边缘(左+右)而不是一个(右边)。

C A 相同,但正确居中。 A 看起来不居中的原因是因为wrap_content假设当文本换行到另一行时,TextView的宽度与父级的宽度一样宽,并且不计算文本块的实际宽度。

那么,我如何实现 C ?有可能吗?

这是完整的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="32dp"
android:layout_marginRight="32dp"
>
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
/>
<TextView
    android:id="@+id/primary_form"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:gravity="start"
    android:textAppearance="@style/TextAppearance.AppCompat.Headline"
    android:textColor="@color/text_primary_on_lt"
    android:breakStrategy="balanced"
    tools:text="Primary form adfahdkahdfa "
/>
<TextView
    android:id="@+id/secondary_form"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="8dp"
    android:textAppearance="@style/TextAppearance.AppCompat.Large"
    android:textColor="@color/text_secondary_on_lt"
    android:textStyle="italic"
    android:typeface="serif"
    android:breakStrategy="balanced"
    tools:text="Secondary form"
/>
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
/>
</LinearLayout>

1 个答案:

答案 0 :(得分:2)

您可以通过多种方式解决这个问题,但我会向您展示两种方式,首先是旧学校线性布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="32dp"
    android:layout_marginRight="32dp"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:id="@+id/primary_form"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:breakStrategy="balanced"
            android:gravity="start"
            android:textAppearance="@style/TextAppearance.AppCompat.Headline"
            tools:text="Primary form adfahdkahdfa " />

        <TextView
            android:id="@+id/secondary_form"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:breakStrategy="balanced"
            android:textAppearance="@style/TextAppearance.AppCompat.Large"
            android:textStyle="italic"
            android:typeface="serif"
            tools:text="Secondary form" />
    </LinearLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>

现在有了最新的约束布局。这是更健壮和推荐的方式。假设您希望主要文本位于其下方的中间和辅助文本中,

<android.support.constraint.ConstraintLayout 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"
    android:layout_marginLeft="32dp"
    android:layout_marginRight="32dp"
    android:orientation="vertical">


    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp"
        android:breakStrategy="balanced"
        android:gravity="start"
        android:textAlignment="center"
        android:textAppearance="@style/TextAppearance.AppCompat.Headline"
        app:layout_constraintBottom_toTopOf="@+id/guideline16"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        tools:text="Primary form adfahdkahdfa " />

    <TextView
        android:id="@+id/secondary_form"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:breakStrategy="balanced"
        android:textAppearance="@style/TextAppearance.AppCompat.Large"
        android:textStyle="italic"
        android:typeface="serif"
        app:layout_constraintLeft_toLeftOf="@+id/textView"
        app:layout_constraintTop_toTopOf="@+id/guideline16"
        tools:text="Secondary form" />


    <android.support.constraint.Guideline
        android:id="@+id/guideline16"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.50793654"
        tools:layout_editor_absoluteX="0dp"
        tools:layout_editor_absoluteY="288dp" />

    <FrameLayout
        android:id="@+id/layout1"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="16dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp"
        android:layout_marginTop="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/secondary_form" />

    <FrameLayout
        android:id="@+id/layout2"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        app:layout_constraintBottom_toTopOf="@+id/textView"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>