作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 textview 中使用这个 layout_constraintWidth_default="wrap"来保持 textview 内容被包裹(在它的右边有 imageview),随着 textview 中文本的增加,textview 区域将增长,从而将 imageview 向右移动。
layout_constraintWidth_default="wrap"
因为它已被弃用,是否有任何替代方案?
逻辑猫
最佳答案
以下是我为解决方案所做的更改,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/
我是一名优秀的程序员,十分优秀!