markdown 在ConstraintLayout中使用Barrier的TextView宽度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在ConstraintLayout中使用Barrier的TextView宽度相关的知识,希望对你有一定的参考价值。

# ConstraintLayout's Barrier important note

[SOURCE](https://constraintlayout.com/basics/barriers.html)

```xml
<?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="match_parent">

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    android:text="@string/warehouse"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

  <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="8dp"
    android:text="@string/hospital"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView1" />

  <android.support.constraint.Barrier
    android:id="@+id/barrier7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:barrierDirection="end"
    app:constraint_referenced_ids="textView2,textView1" />

  <!--This is the most important factor, the TextView that need to constraint to a Barrier-->
  <!--need to have its width or height set to match_constraint instead of wrap_content-->
  <TextView
    android:id="@+id/textView3"
    android:layout_width="0dp" <---- IMPORTANT
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:text="@string/lorem_ipsum"
    app:layout_constraintStart_toEndOf="@+id/barrier7"
    app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>
```

以上是关于markdown 在ConstraintLayout中使用Barrier的TextView宽度的主要内容,如果未能解决你的问题,请参考以下文章

TranslationY 动画不与 TransitionManager 一起播放

是否可以将 ConstraintLayout 放在 ScrollView 中?

Android jetpack LifeCycle 在Ativity中的应用

markdown 在引用中如何使用无序列表?

markdown怎么在网页浏览

在自己的电脑上编译markdown文件