Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/07/2012, 11:52
ramondevesa
 
Fecha de Ingreso: noviembre-2010
Mensajes: 234
Antigüedad: 14 años
Puntos: 2
Me tira error y no entiendo el por que

Buenas, el siguiente código en el main.xml de una aplicación Android me tira un error que no termino de comprender:

Código HTML:
Ver original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    android:orientation="vertical"
  5.    android:layout_width="fill_parent"
  6.    android:layout_height="fill_parent">
  7.  
  8.     <TextView android:text="@string/nombre"
  9.        android:layout_width="fill_parent"
  10.        android:layout_height="wrap_content" />
  11.    
  12.     <EditText android:id="@+id/TxtNombre"
  13.        android:layout_height="wrap_content"
  14.        android:layout_width="fill_parent" />
  15.    
  16.     <Button android:id="@+id/BtnHola"
  17.        android:layout_width="wrap_content"
  18.        android:layout_height="wrap_content"
  19.        android:text="@string/hola" />
  20.    
  21. </LinearLayout>

Me tira error en los @string/... de TextView y Button, y no comprendo el por que, gracias :)