Created
October 13, 2017 08:10
-
-
Save PaulWoitaschek/7cb0400a52460c4649a31729f60317e6 to your computer and use it in GitHub Desktop.
CL Bug 1.1.0-beta3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1.1.0-beta3
1.0.2