Skip to content

Instantly share code, notes, and snippets.

@danielmalone
Last active January 25, 2020 00:50
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 danielmalone/3bb7204a0afbe07d25c73d6897797aa3 to your computer and use it in GitHub Desktop.
Save danielmalone/3bb7204a0afbe07d25c73d6897797aa3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
<TextView
android:id="@+id/invoiceTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Invoice for Brad Smither"
android:textColor="#000"
android:textSize="14sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment