Android フレームワークを使用するのはこれが初めてです。Android ページのガイドラインに従って、テスト アプリを作成しました。彼らが言及したとおりに実行した後でも、このようなエラーが発生します(明確にするために、いくつかしか言及しませんでした)。私は本当にここから行く方法を理解できません。
[2013-06-21 08:46:37 - 私の最初のアプリ] W/ResourceType(7940): 不正な XML ブロック: ヘッダー サイズ 122 または合計サイズ 8002512 がデータ サイズ 0 より大きい
[2013-06-21 08:46: 37 - My First App] C:\Users\llp-admin\workspace3\My First App\res\layout\activity_main.xml:7: エラー: エラー: 指定された名前に一致するリソースが見つかりません (「ヒント」で値'@string/edit_message')。
これは 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>
これは、strings.xml ファイルです。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">My First App</string>
<string name="hello_world">Hello world!</string>
<string name ="button_send">Send</string>
<string name = "action_settings">Settings</string>
<string name = "title_activity_main">MainActivity</string>
</resources>