<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/editmessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/edit_message"
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_conent"
android:text="@string/button_send"/>
<?xml version"1.0" encoding="utf-8"?>
<rescources>
<string android:name="app_name">becreativebuddy</string>
<string android:name="edit_message">Enter a message</string>
<string android:name="button_send">Send</string>
<string android:name="action_settings">Settings</string>
<string android:name="title_activity_main">MainActivity</string>
</rescources>
</LinearLayout>
我得到標題中所述的那兩個錯誤7.我不知道爲什麼它告訴我我有一個想法,因爲我只是在學習,所以很好。解析XML時出錯:格式不正確(無效令牌)和元素類型「LinearLayout」必須後面跟有屬性規範,「>」或「/>」
您似乎忘記了'>'地方。 –
可能的重複[錯誤:解析XML錯誤:不正確(無效標記)...?](http://stackoverflow.com/questions/7089718/error-error-parsing-xml-not-well-formed -invalid-token) –