水平偏移 屬性 app:layout_constraintHorizontal_bias
app:layout_constraintHorizontal_bias="0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constrainedWidth="true"
使用 app:layout_constraintHorizontal_bias 的前提 , 必須先設(shè)置水平方向的約束
//將 被約束組件 的 左側(cè) 約束到 目標組件 的左側(cè)
app:layout_constraintLeft_toLeftOf
//將 被約束組件 的 左側(cè) 約束到 目標組件 的右側(cè)
app:layout_constraintLeft_toRightOf
//將 被約束組件 的 右側(cè) 約束到 目標組件 的左側(cè)
app:layout_constraintRight_toLeftOf
//將 被約束組件 的 右側(cè) 約束到 目標組件 的右側(cè)
app:layout_constraintRight_toRightOf
//將 被約束組件 的 開始 約束到 目標組件 的 結(jié)束
app:layout_constraintStart_toEndOf
//將 被約束組件 的 開始 約束到 目標組件 的 開始
app:layout_constraintStart_toStartOf
//將 被約束組件 的 結(jié)束 約束到 目標組件 的 開始
app:layout_constraintEnd_toStartOf
//將 被約束組件 的 結(jié)束 約束到 目標組件 的 結(jié)束
app:layout_constraintEnd_toEndOf
鏈布局 ConstraintLayout Chain
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constrainedWidth="true" 屬性刁绒,是按約束去限制寬度
<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="match_parent"
android:padding="6dp">
<ImageView
android:id="@+id/work_record_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_user_list_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:layout_constrainedWidth="true"
android:ellipsize="end"
android:singleLine="true"
android:text="AmlyAminAmlyAminilyAmlyAminAmlyAminilyAmlyAminilyilyAmlyAminilyily"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintHorizontal_chainStyle="packed"
android:textColor="@color/white"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/work_record_img"
app:layout_constraintRight_toLeftOf="@id/work_record_username"
app:layout_constraintTop_toTopOf="parent"
/>
<TextView
android:id="@+id/work_record_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="6dp"
android:text="test1"
android:textColor="@color/white"
android:textSize="18dp"
app:layout_constraintLeft_toRightOf="@+id/tv_user_list_name"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@id/tv_user_list_name" />
</androidx.constraintlayout.widget.ConstraintLayout>