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";
        </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。

4

2 回答 2

0

您必须使用/>in<EditText key="value" />>in关闭标签<EditText key="value"></EditText>。不要使用;

<?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" />
</LinearLayout>

编辑:之后,如果您仍然有错误,请删除:

android:hint="@string/edit_message"

android:text="@string/button_send"

除非您的 values/strings.xml 文件中有相应的条目:

<string name="edit_message">Enter a text</string>
<string name="button_send">Button text</string>
于 2012-08-21T20:14:36.063 回答
0

这是它的外观(注意以“<”符号结尾且没有“;”)

<?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_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>
于 2012-08-21T20:17:38.993 回答