Created
June 6, 2017 18:15
-
-
Save slxny/40e13ca3f040b282238931bb4bc9d066 to your computer and use it in GitHub Desktop.
appdeclaration
This file contains hidden or 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
<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