※ ChatGPTを利用し、要約された質問です(原文:androidプログラムのエラーについて)
Androidプログラムのエラーについて
2012/09/08 19:03
このQ&Aのポイント
Androidプログラミングの勉強中に「your project contains error」というエラーメッセージが表示されます。
XMLファイルの内容を確認しましたが、間違いは見当たらず、コンソールには「No resource found that matches the given name」というエラーメッセージが表示されます。
ソースをクリーンすると、javaファイルにエラーが起きる状態になります。
自分は今、本を読みながらandroidプログラミングの勉強をしています。
XMLファイルをよく見直して間違いは見当たらないのですが
起動しようとすると「your project contains error」と表示されます。
コンソールには「No resource found that matches the given name (at 'title' with value '@string/menu_settings')」と書いてあります。
ネットで調べたらソースをクリーンすればいいと書いてありましたが
クリーンすると今度はjavaファイルにエラーが起きます。
以下が自分が打ち込んだ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:text="お申込みフォーム"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android "
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:text="お名前 :"
android:layout_width="70sp"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/name"
android:layout_width="200dp"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android "
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:text="住所 :"
android:layout_width="70sp"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/address"
android:layout_width="200dp"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android "
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:text="生年月日 :"
android:layout_width="70sp"
android:layout_height="wrap_content"/>
<Spinner
android:id="@+id/month"
android:entries="@array/month"
android:layout_width="85dp"
android:layout_height="wrap_content"/>
<TextView
android:text="月"
android:layout_width="20sp"
android:layout_height="wrap_content"/>
<Spinner
android:id="@+id/day"
android:entries="@array/day"
android:layout_width="85dp"
android:layout_height="wrap_content"/>
<TextView
android:text="日"
android:layout_width="20sp"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
どうかよろしくお願い致します。
質問の原文を閉じる
質問の原文を表示する
お礼
すいません。 もっとよく調べたら解決できました。 やっとプログラムが起動しました。 とても参考になりました。 ありがとうございます。
補足
度々すいません。 本を読んだのですがよくわかりませんでした。 ネット上で調べたりして色々試したりもしました。 どう書き込んだらいいか教えていただけませんでしょうか。