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>
不興似乎是錯誤的你的XML。你的strings.xml文件下是否有edit_message和button_send字符串? – Devrim
@aegean我似乎已經想通了。我沒有將button_send文件保存在它:( – entropy