Estoy haciendo el ejercicio "sudoku" del libro "hola a Android". Vi a algunas personas tener el mismo problema que yo, pero no puedo resolverlo. He eliminado tres veces este proyecto y lo vuelvo a crear desde el principio, pero sigo recibiendo el mismo mensaje de error a continuación, incluso si estoy copiando/pegando del libro.Error: No se encontró ningún recurso que coincida con el nombre de pila (en 'título' con el valor '@ cadena/menu_settings')
W/ResourceType(8592): Bad XML block: header size 29806 or total size 538970658 is larger than data size 0
C:\java\Sudoku\res\layout\activity_main.xml:6: error: Error: No resource found that matches the given name (at 'text' with value '@string/hello_world').
C:\java\Sudoku\res\menu\activity_main.xml:2: error: Error: No resource found that matches the given name (at 'title' with value '@string/menu_settings').
No es el código dentro del libro para el Sudokuv1/res/layout/main1.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/main_title" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/continue_label" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/new_game_label" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_label" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit_label" />
</LinearLayout>
No es el código para Sudokuv1/res/values/strings.xml
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Sudoku</string>
<string name="main_title">Android Sudoku</string>
<string name="continue_label">Continue</string>
<string name="new_game_label">New Game</string>
<string name="about_label">About</string>
<string name="exit_label">Exit</string>
</resources>
Gracias por su ayuda!
Creo que el problema está en xml activity_main, no en el que publicaste, parece que está buscando una cadena llamada hello_world y menu_settings que no existe. – MikeIsrael
Ha pegado el xml incorrecto. Verifica tu salida de error. –
muéstranos activity_main.xml .... o simplemente agrégalo a string.xml hola y eso es todo. –
Shark