У меня есть два TextViews, один над другим. Я бы хотел, чтобы вертикальная середина двух TextView находилась в той же позиции, что и вертикальная середина ImageView. (Это так, независимо от объема текста, который может go в любом TextView, все всегда будет выглядеть аккуратно, по вертикали.)
Я идеально создал то, что мне нужно, используя два LinearLayout s (поскольку пространство над заголовком такое же, как пространство под описанием):
Но Android Studio не удалось его скрыть ConstraintLayout успешно, так как он просто вывел TextViews внизу макета. Я играл со многими атрибутами, но не смог прийти к желаемому макету.
Мой вопрос похож на этот , за исключением того, что я пытаюсь выровнять по центру пара видов, а не один вид - это означает, что у меня нет края вида для выравнивания по центру ImageView / контейнера.
Возможно ли достичь Я после с ConstraintLayout ? (Я ожидаю, что смогу сделать это с помощью одного RelativeLayout, но я хотел бы использовать атрибут layout_constraintDimensionRatio
в моем ImageView, который, вероятно, оставит мне необходимость использовать ConstraintLayout.)
В случае, если это поможет, Вот код для моего вышеупомянутого LinearLayout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/resources_list_image_size"
android:layout_height="@dimen/resources_list_image_size"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_gravity="center_vertical"
android:contentDescription="@string/resource_image"
android:scaleType="centerCrop"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:orientation="vertical">
<TextView
android:id="@+id/textViewTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/MyTextAppearanceMedium"
tools:text="Title" />
<TextView
android:id="@+id/textViewDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/MyTextAppearanceSmall"
tools:text="Description" />
</LinearLayout>
</LinearLayout>
Обновление: Решение
Благодаря ответу Бен П , это мой окончательный код:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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="wrap_content">
<!-- Add guideline to align imageView to. -->
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.3" />
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:contentDescription="@string/resource_image"
android:scaleType="centerCrop"
app:layout_constraintDimensionRatio="H,1:1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@id/guideline"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<TextView
android:id="@+id/textViewTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
app:layout_constraintBottom_toTopOf="@id/textViewDescription"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/imageView"
app:layout_constraintTop_toTopOf="parent"
android:textAppearance="@style/MyTextAppearanceMedium"
app:fontFamily="@font/roboto_slab_regular"
app:layout_constraintVertical_chainStyle="packed"
tools:text="@string/enter_title_colon" />
<TextView
android:id="@+id/textViewDescription"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/imageView"
app:layout_constraintTop_toBottomOf="@id/textViewTitle"
app:fontFamily="@font/roboto_slab_light"
android:textAppearance="@style/MyTextAppearanceSmall"
tools:text="Description" />
</androidx.constraintlayout.widget.ConstraintLayout>