美文网首页
Android 实现textview在一定宽度内自适应宽度

Android 实现textview在一定宽度内自适应宽度

作者: 银弹星空 | 来源:发表于2022-03-28 17:18 被阅读0次

    解决问题

    view跟在textview的右边,view宽度固定,textview自适应宽度,但textview 加view宽度刚好到达父view宽度时,如果textview内容还没显示完应该显示省略号;就是textview宽度自适应到一定宽度后就不能再增长了。
    image.png
    <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
     
            <TextView
                android:id="@+id/tvs"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="1"
                android:textSize="24sp"
                app:layout_constrainedWidth="true"
                app:layout_constraintEnd_toStartOf="@+id/view"
                app:layout_constraintHorizontal_bias="0"
                app:layout_constraintHorizontal_chainStyle="packed"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                android:text="我是内容我是内容" />
     
            <View
                android:id="@+id/view"
                android:layout_width="80dp"
                android:layout_height="30dp"
                android:background="#f00"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintStart_toEndOf="@+id/tvs" />
     
        </android.support.constraint.ConstraintLayout>
    

    注意

    ConstraintLayout中的约束条件是否完整,如果不完整会提示报错,运行崩溃
    This view is not constrained vertically: at runtime it will jump to the top unless you add a vertical constraint less…
    
    水平垂直约束都要添加
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
    

    相关文章

      网友评论

          本文标题:Android 实现textview在一定宽度内自适应宽度

          本文链接:https://www.haomeiwen.com/subject/acwpjrtx.html