Skip to content

Instantly share code, notes, and snippets.

Created May 20, 2015 20:53
Show Gist options
  • Save anonymous/8bb1c5d7e4d3e434fb10 to your computer and use it in GitHub Desktop.
Save anonymous/8bb1c5d7e4d3e434fb10 to your computer and use it in GitHub Desktop.
<Text View
android:text="Hapy Birthday"
android:layout_width="150dp"
android:layout_height="150"
android:background="@android:color/darker_groy"
>
@FOrellanaB
Copy link

FOrellanaB commented Sep 25, 2022

In line 1: <Text View should be <TextView
In line 4: "150" should be "150dp"
In line 6: > sloud be />

@tarunaksha
Copy link

Corrected:
line 1: TextView, happy
line 4: 150dp
line 6: />

@lalaodder
Copy link

<Text View | Existe un espacio entre ambas palabras, no cumple la consigna "CamelCase".
android:text="Hapy Birthday" | Existe un error ortográfico en la palabra (hapy/happy), pero no altera el funcionamiento del código.
android:layout_width="150dp"
android:layout_height="150" | No tiene asignada la unidad de medida "dp".
android:background="@android:color/darker_groy" | El nombre del color tiene un error ortográfico (groy/gray).
> | El cierre de la etiqueta para el elemento TextView no está escrita de manera correcta, falta el símbolo #slash ("/>").

@Musongtekoro
Copy link

@AlassaneSylla
Copy link

  1. TextView
  2. 150dp
  3. darker_gray
  4. />

@falloulahi
Copy link

1-"Text" et "View" doit être colés ===>ligne 1
2-Il manque "/" avnt le ">" pour fermer la balise ===>ligne 6
3-le nom de la couleur c'est "darker_gray" et non "darker_groy" ===>ligne 5
4-la valeur de "layout_height" dit avoir une unité, "dp" par exemple ===>ligne 4

@djirotechno
Copy link

line 4 expected dp
line 5 expected /
line 5 grey not groy
line 1 TextView not Text View

@AlibekSerikbayev
Copy link

@SanaDeveloper99
Copy link

TextView

@ruslanmalikov87
Copy link

Missing the closing statement /

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment