这是我的代码:
<?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";
</EditText>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send";
</Button>
</LinearLayout>
第一个 EditText 和第一个 Button 行有一个错误,第一个错误是标题中的错误,第二个错误是:'元素类型'EditText'必须后跟属性规范,'>'或'/>'
怎么了?整个代码(几乎)完全按照此处所示http://developer.android.com/training/basics/firstapp/building-ui.html
(如果我拼写错误或忘记了什么,我很抱歉,我是这里的菜鸟......)
编辑:谢谢,伙计们,但我试着把你的代码粘贴到我的上面。虽然没有 X 标志,但调试工具仍然说有一些错误...
编辑:是的,我有所需的字符串,因为我按照教程进行操作。但我不明白...如果我将教程网站上给出的代码粘贴到 Eclipse 中,仍然会出现错误!我将尝试在另一个程序中打开 .xml。