Skip to content

Instantly share code, notes, and snippets.

@behrends
Created January 15, 2019 09:57
Show Gist options
  • Save behrends/e9a7d3c7deb015caa51bf8af530f2414 to your computer and use it in GitHub Desktop.
Save behrends/e9a7d3c7deb015caa51bf8af530f2414 to your computer and use it in GitHub Desktop.
<TextView
android:id="@+id/order_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginLeft="24dp"
android:layout_marginTop="8dp"
android:text="Order:"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/name_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginLeft="24dp"
android:layout_marginTop="32dp"
android:text="Name"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/order_textview"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment