2012-08-25 77 views
0

我讀了你好Android書,我有書中的一個練習的問題。 我複製並粘貼從書代碼activity_main.xmlres/layout)和strings.xmlres/values),但我看到的錯誤是Unparsed aapt error(s)!Check the console for Sudoku.錯誤!未解析的aapt錯誤(s)!檢查控制檯Sudoku

我一派,我不回答我讀計算器的鏈接,但我的問題沒有解決。

activity_main.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> 

的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> 

我讀控制檯選項卡中,我得到有關該計劃的更多信息:

Bad XML block: header size 91 or total size 0 is larger than data size 0 
error: Error: No resource found that matches the given name (at 'title' with value '@string/menu_settings'). 

我解決不了這個問題。有人可以幫幫我嗎?

回答

0

添加到您的strings.xml:

<string name="menu_settings">Your text</string> 

看來您正在訪問未被定義的字符串。