1

私はこれにまったく慣れていないので、このページのガイドに従っていますhttp://developer.android.com/training/basics/firstapp/building-ui.html

私は彼らのコードをコピーします:

<?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>

しかし、これを保存すると、一番下に新しい行が自動的に作成されます。

<menu xmlns:android="http://schemas.android.com/apk/res/android"></menu>

この特定の行のエラーメッセージが表示されます。私はフォーラムを検索し、提案は一線を画しているように見えますが、それは不可能です (!)。ファイルを保存すると自動的に戻ります。

そこに何か助けはありますか?

4

0 に答える 0