14

Eclipse を使用して Android アプリをプログラムしていますが、停止しました。コードを閉じようとしました

<?xml version="1.0" encoding="utf-8"?>

しかし、エラーメッセージが表示され続けます

「「[xX][mM][lL]」に一致する処理命令ターゲットは許可されていません。」

コードは次のとおりです。

<?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/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="text" >
        <requestFocus />

</EditText>  

<resources>
    <string android:name="app_name"></string>
    <string android:name="edit_message"></string>
    <string android:name="button_send"></string>
    <string android:name="action_settings"></string>
    <string android:name="title_activity_main"></string>
</resources>

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send" />

<EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="text" >
        <requestFocus />

</EditText> 
<?xml version="1.0" encoding="utf-8"?>

私は間違いを犯しましたか?もしそうなら、私に知らせてください。

4

7 に答える 7

3

はい、前に文字があってはなり<?xmlません..空白文字でさえありません..私は同じ問題を抱えていました..解決しました..

于 2014-07-25T10:13:48.663 に答える
0

1) XML ファイルで または タグを使用する場合、宣言されていない変数がコードに含まれていないことを確認してください (string.xml ファイル内)。

2) 「R.java」ファイルに、使用されているすべての変数が反映されていることを確認します。

3) プロジェクトを再ビルドして検証します。

于 2014-02-25T10:22:19.270 に答える
0

1.マニフェストファイルの先頭に書いたことを確認してください... 2.ファイルの前に文字がないことを確認してください...

于 2016-05-19T11:34:17.603 に答える
0

manifest.xml を開き、次に を押しctrl+Aますctrl+I。manifest.xml を自動フォーマットします。

于 2015-04-02T15:42:20.440 に答える