我有问题。我试图创建一个应用程序,但我收到一个错误,我真的不知道如何解决它。它在EditText之前给出了一个红色十字,我认为它与如何打开/关闭所有内容有关,但我无法找到问题。
<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" />
/>
希望收到你的来信。
答案 0 :(得分:0)
这是你的问题
您在线性布局上留下了>
结束符号。
这是正确的方法
<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" >
<!--items go here -->
</LinearLayout>
答案 1 :(得分:0)
LinearLayout应该有一个打开和关闭标记:
<LinearLayout
attributes here...>
....stuf there...
</LinearLayout>