我正在从“hello to android”一书中练习“数独”。 我看到有些人和我有同样的问题,但我无法解决。 我已经删除了三次这个项目,并从头开始重新创建,但我在下面仍然收到相同的错误消息,即使我正在从书中复制/粘贴。
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').
本书中有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>
有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>
感谢您的帮助!
答案 0 :(得分:3)
如果您使用Elcipse插件创建了Android应用程序,则在res
文件夹中有一个菜单文件夹,在该文件夹中有另一个activity_mail.xml
。
删除文件或评论其内容,因为您不会使用sudoku app
的菜单。
那应该解决它。
答案 1 :(得分:2)
添加
<string name="hello_world">hi</string>
到你的string.xml
或者在您的activity_main.xml中找到名为'title'的视图,并从中删除android:text =“@ string / hello_world”属性。
答案 2 :(得分:0)
从activity_main.xml
删除文件res>menu
,因为res>menu
和res>layout
中有两个同名的文件。