Skip to content

Instantly share code, notes, and snippets.

@PaulWoitaschek
Created October 13, 2017 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulWoitaschek/7cb0400a52460c4649a31729f60317e6 to your computer and use it in GitHub Desktop.
Save PaulWoitaschek/7cb0400a52460c4649a31729f60317e6 to your computer and use it in GitHub Desktop.
CL Bug 1.1.0-beta3
<?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="wrap_content">
<View
android:id="@+id/red"
android:layout_width="0dp"
android:layout_height="40dp"
android:background="#ff0000"
app:layout_constraintTop_toTopOf="parent"/>
<FrameLayout
android:id="@+id/blue"
android:layout_width="0dp"
android:layout_height="40dp"
android:background="#0033ff"
app:layout_constraintBottom_toTopOf="@+id/text"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/red"/>
<TextView
android:id="@+id/text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="MyText"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/blue"/>
</android.support.constraint.ConstraintLayout>
@PaulWoitaschek
Copy link
Author

PaulWoitaschek commented Oct 13, 2017

1.1.0-beta3

screenshot_20171013-100955

1.0.2

screenshot_20171013-100805

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment