注册 登录
编程论坛 Android开发

.xml中的问题

yu1543054075 发布于 2015-11-04 10:54, 3231 次点击
<LinearLayout xmlns:android="http://schemas.
    xmlns:tools="http://schemas.
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"

    <TextView
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/1" />
    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="button" />

</LinearLayout>
显示这样的错误:Element type "LinearLayout" must be followed by either attribute specifications, ">" or "/>".
1 回复
#2
tlliqi2015-11-04 14:04
按提示处理
1