Skip to content

Instantly share code, notes, and snippets.

@danielmalone
Created January 24, 2020 03:26
Show Gist options
  • Save danielmalone/9e526700dc9c9db75bfdfcca096f84b6 to your computer and use it in GitHub Desktop.
Save danielmalone/9e526700dc9c9db75bfdfcca096f84b6 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/podcastTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="16sp"
android:text="Will this work?"
android:textColor="#000"
android:textSize="26sp"
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