我是Android应用程序开发的新手,我正在尝试构建一个简单的界面,但它向我显示以下错误Element type "EditText" must be followed by either attribute specifications, ">" or "/>"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<EditText android:id="@+id/edit_message"
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_content"
android:text="@string/button_send" />
</LinearLayout>
答案 0 :(得分:5)
不是Android怪胎,但作为xml用户,您的edittext代码可能是
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/edit_message" /> <--
缺少结束标记。您必须像下面的按钮一样添加/>
。