我在android 网站
上做 android 教程我在 EditText 上不断收到这些错误:解析 XML 时出错:格式不正确(无效令牌)和 Element Linearlayout 必须后跟属性规范,>
或者/>
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="horizontal"
tools:context=".MainActivity"
<EditText
android:id="@+id/editText1"
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"
android:onClick="sendMessage"/>
</LinearLayout>
我怎样才能解决这个问题?