我得到一個錯誤的XML解析:not well formed at the "Android:hint..."
XML解析錯誤:「不能很好地形成的......」
我甚至從現場檢查,複製和粘貼,仍然得到同樣的錯誤。
<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:[email protected]+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
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>
你錯過了引號'
把公開報價放在 -
Boverton