2014-02-23 72 views
0

我知道Android應用程序開發,我正在關注http://developer.android.com/training/basics/firstapp/building-ui.html#Weight(官方安卓網站)的教程,我試圖運行我的代碼,我想我已經完全按照所示關於這個教程是如何呈現它的,但是我一直收到一個關於「錯誤傳遞xml格式不正確(無效標記)」的錯誤,我認爲這意味着我在某個地方犯了一個小錯字,但是我似乎無法找到它。不知道如何解決XML傳遞錯誤

<?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_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

不興似乎是錯誤的你的XML。你的strings.xml文件下是否有edit_message和button_send字符串? – Devrim

+0

@aegean我似乎已經想通了。我沒有將button_send文件保存在它:( – entropy

回答

0

看來我沒有保存與edit_message字符串的文件。這似乎已經清理了錯誤。對不起張貼這麼愚蠢的問題。

相關問題