Skip to content

Instantly share code, notes, and snippets.

@slxny
Created June 6, 2017 18:15
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 slxny/40e13ca3f040b282238931bb4bc9d066 to your computer and use it in GitHub Desktop.
Save slxny/40e13ca3f040b282238931bb4bc9d066 to your computer and use it in GitHub Desktop.
appdeclaration
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--TODO (6) Delete this TextView-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="@+id/activity_main"
app:layout_constraintLeft_toLeftOf="@+id/activity_main"
app:layout_constraintRight_toRightOf="@+id/activity_main"
app:layout_constraintTop_toTopOf="@+id/activity_main" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment