Created
May 20, 2015 20:53
-
Star
(106)
You must be signed in to star a gist -
Fork
(96)
You must be signed in to fork a gist
-
-
Save anonymous/8bb1c5d7e4d3e434fb10 to your computer and use it in GitHub Desktop.
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
<Text View | |
android:text="Hapy Birthday" | |
android:layout_width="150dp" | |
android:layout_height="150" | |
android:background="@android:color/darker_groy" | |
> |
The tag name is invalid: it should be TextView instead of Text View. The closing tag is also missing the forward slash (/) before the closing angle bracket. In addition, the unit dp is missing. Finally, the background color is invalid; it should be darker_gray instead of darker_groy.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 1- it should be written in CamelCase with no space, like <TextView
Line 2- attribute value has grammar error, "Happy Birthday"
Line 4- attribute value has no measurement unit, so add dp
Line 5- attribute value spelling error, darker_gray
Line 6- the forward / before the closing angle is missing