2012-07-31 10 views
5

"hello to android"という本から "sudoku"という練習をしています。 私には同じ問題がある人もいましたが、解決できませんでした。 私はこのプロジェクトを3回削除し、最初から再作成しましたが、私は本からコピー/ペーストを行っていても、下に同じエラーメッセージが表示され続けます。エラー:指定された名前と一致するリソースが見つかりませんでした( 'title'の値が '@ string/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'). 

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

私はあなたが投稿したものではなく、xml activity_mainにあると思います。存在しないhello_worldとmenu_settingsという文字列を探しているようです。 – MikeIsrael

+2

間違ったXMLを貼り付けました。エラー出力を確認してください。 –

+0

activity_main.xmlを表示するか、単にこれをstring.xmlに追加してください hiとthatsです。 – Shark

答えて

3

ElcipseプラグインでAndroidアプリケーションを作成した場合は、resフォルダにメニューフォルダがあり、そのフォルダ内に別のactivity_mail.xmlがあります。

sudoku appのメニューを使用していないため、ファイルを消去するか、その内容にコメントしてください。

これで解決するはずです。

2

どちらかあなたのstring.xmlを

<string name="hello_world">hi</string> 

を追加したり、activity_main.xmlに 'タイトル' というビューを見つけて、アンドロイドを消去:テキスト= "@文字列/ hello_world" プロパティをからそれ。

0

res>menures>layoutに同じ名前のファイルが2つあるため、activity_main.xmlres>menuから削除してください。

関連する問題