2014-10-31 56 views
-3

我是新來的Android應用程序的開發,我想建立一個簡單的界面,但它讓我看到下面的錯誤Element type "EditText" must be followed by either attribute specifications, ">" or "/>"元素類型「的EditText」必須遵循的任一屬性規範「>」或「/>」

<?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> 
+1

關閉您的編輯文本 – Namy 2014-10-31 06:54:48

+0

錯誤消息不能更容易理解的傢伙,元素類型「EditText」後面必須跟有屬性規格,「>」或「/>」 – Siddharth 2014-10-31 06:56:50

+0

好工作@Sumit Sharma你給了關閉像Button和LinearLayout這樣的其他視圖的標籤,但令人驚訝的是沒有給EditText一個很好的成就。 – 2014-10-31 07:12:58

回答

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

缺少結束標記。您必須添加/>,就像您對Button所做的操作一樣。

相關問題