gpt4 book ai didi

android - layout_constraintWidth_default ="wrap"已弃用 任何替代方案?

转载 作者:行者123 更新时间:2023-11-29 15:33:58 25 4
gpt4 key购买 nike

我在 textview 中使用这个 layout_constraintWidth_default="wrap"来保持 textview 内容被包裹(在它的右边有 imageview),随着 textview 中文本的增加,textview 区域将增长,从而将 imageview 向右移动。

layout_constraintWidth_default="wrap"

因为它已被弃用,是否有任何替代方案?

逻辑猫

enter image description here

最佳答案

以下是我为解决方案所做的更改,imageview 不会超出可见屏幕区域:

android:layout_width="wrap_content"
app:layout_constrainedWidth="true"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintHorizontal_chainStyle="packed"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text asdasdasdasdasdasdasdasdasdadsasdasdasdasdasdasdasd"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/image"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/text"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

关于android - layout_constraintWidth_default ="wrap"已弃用 任何替代方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56565195/

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