だから私は最近(最近の今日のように)日食で働き始めました。私はアンドロイド開発者の初心者コースをフォローしてきましたが、この時点まではすべてうまくいきました。私はシンプルなユーザーインターフェイス(http://developer.android.com/training/basics/firstapp/building-ui.html#Button)を構築し、すべてを一言一句実行しましたが、実行しようとするとと言う
指定された名前 ('title' で値 '@string/action_settings') に一致するリソースが見つかりませんでした。
私は戻ってすべてをチェックし、彼らが説明したようにすべてを行いましたが、それでもこれを行いますか? 私は完全な初心者なので、何かが足りないだけかもしれませんが、何がわかりません。Eclipse を再起動しましたが、まだアプリを実行できず、何百万回もエラーが発生しました。
これは私のデザインシートです:
レイアウト activity_main.xml 内
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
値string.xmlで
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">My First App</string>
<string name="edit_message">Enter a message</string>
<string name="button_send">Send</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
</resources>
そして、それは私が台無しにしたすべてです。問題はありませんか?
明らかな何かが欠けていますか?