gpt4 book ai didi

android - ConstraintLayout 最后一个 View 被裁剪

转载 作者:行者123 更新时间:2023-11-29 01:05:05 24 4
gpt4 key购买 nike

在我的布局中,最后一个 View (蓝色文本)正在被裁剪,如下图所示。

enter image description here

我的 ConstraintLayout 设置如下

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/ivIcon"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginEnd="10dp"
android:layout_marginTop="10dp"
android:background="@color/blue"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<TextView
android:id="@+id/tvMain"
style="@style/ActorTextMainOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="28dp"
android:text="28"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<TextView
android:id="@+id/tvSecondaryOne"
style="@style/ActorTextSecondary"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="4dp"
android:text="Jun"
app:layout_constraintBottom_toTopOf="@+id/tvSecondaryTwo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/tvMain"/>

<TextView
android:id="@+id/tvSecondaryTwo"
style="@style/ActorTextSecondary"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="4dp"
android:text="2017"
app:layout_constraintBottom_toBottomOf="@+id/tvMain"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/tvMain"/>

<TextView
android:id="@+id/tvDescription"
style="@style/ActorTextDescription"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginTop="4dp"
android:text="@string/arrival_date"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/tvMain"
app:layout_constraintTop_toBottomOf="@+id/tvSecondaryTwo"/>

</android.support.constraint.ConstraintLayout>

正在使用的 ConstraintLayout 版本是 1.0.2

我想我在这里遗漏了一些明显的东西,但我无法弄清楚。如何使底部的蓝色文本完全可见,同时保持 ConstraintLayout 的高度为 wrap_content

最佳答案

尝试改变

app:layout_constraintTop_toBottomOf="@+id/tvSecondaryTwo"

app:layout_constraintTop_toBottomOf="@+id/tvMain"

对于 ID 为 tvDescription 的 TextView

这使得 ID 为 tvDescription 的 TextView 位于 ID 为 tvMain 的 TextView 下方。

关于android - ConstraintLayout 最后一个 View 被裁剪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47854013/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com