Android wrap_content слишком широкий, если текстовый текст TextView длинный
Вы можете использовать либо layout_gravity
или же gravity
для центрирования текста. С layout_gravity
:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:breakStrategy="balanced"
/>
Короткие отрезки текста будут отображаться как:
[ Hello ]
Пока длинные отрезки будут: (А)
[ One lemming looking ]
[ up. ]
Так что вы можете добавить:
android:gravity="center"
И вы получите: (B)
[ One lemming looking ]
[ up. ]
Однако я хочу добиться этого: (с)
[ One lemming looking ]
[ up. ]
А выглядит не очень хорошо, потому что текст не выглядит по центру. Это особенно верно, если в макете есть более центрированные элементы.
Б выглядит не очень хорошо, потому что очень короткое слово "вверх" было помещено в центр. Даже если текст длиннее, он выглядит не очень хорошо, потому что текст имеет два зубчатых края (слева + справа) вместо одного (справа).
C такой же, как 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 ответ
Вы можете решить эту проблему несколькими способами, но я покажу вам два способа: во-первых, для линейных макетов старой школы
<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>