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

<resources>
<string name="app_name">becreativebuddy</string>
</resources>

私は20行目のうち18行目にエラーが発生しています。私はこれに非常に慣れていないため、チュートリアルの単語に従っています。ローカライズの習慣を身に付けたいと思っていますが、ローカライズがないとコンパイルして問題なく実行されるため、イライラします。単純なエラーである場合は申し訳ありませんが、オンラインで役立つものは見つかりませんでした. 前に述べたように、私はこれに慣れていないので、シンプルに保つようにしてください。

4

1 に答える 1

1

ファイルの最後にある で始まる 3 行を削除する必要があります<resources>。これらの 3 行をリソース ディレクトリの新しいファイルに移動します。

于 2013-05-19T17:31:27.353 に答える