Advertisement
Guest User

Untitled

a guest
Feb 11th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent">
  7.  
  8.     <TextView
  9.        android:id="@+id/textView27"
  10.        android:layout_width="wrap_content"
  11.        android:layout_height="wrap_content"
  12.        android:layout_marginStart="8dp"
  13.        android:layout_marginTop="8dp"
  14.        android:text="TextView"
  15.        app:layout_constraintStart_toStartOf="parent"
  16.        app:layout_constraintTop_toTopOf="parent" />
  17.  
  18.     <TextView
  19.        android:id="@+id/textView28"
  20.        android:layout_width="wrap_content"
  21.        android:layout_height="wrap_content"
  22.        android:layout_marginStart="8dp"
  23.        android:layout_marginTop="8dp"
  24.        android:text="aaaaaaaaaaaaaaaa"
  25.        app:layout_constraintStart_toStartOf="parent"
  26.        app:layout_constraintTop_toBottomOf="@+id/textView27" />
  27.  
  28.     <android.support.constraint.Barrier
  29.        android:id="@+id/barrier"
  30.        android:layout_width="wrap_content"
  31.        android:layout_height="wrap_content"
  32.        app:barrierDirection="right"
  33.        app:constraint_referenced_ids="textView27,textView28" />
  34. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement