0

我正试图解决这个问题,但我找不到我出错的地方。

消息:

Element type "LinearLayout" must be followed by either attribute specifications, ">" or "/>".

为什么我会得到这个?有任何想法吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"

    **<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="#0000FF"
        android:padding="20dp"
        android:paddingBottom="10dp"
        android:gravity="center_horizontal">



    </LinearLayout>


</LinearLayout>
4

4 回答 4

3

这是一个不言自明的错误消息。

你没有关闭你的LinearLayout标签。>android:orientation="vertical". _

于 2013-04-29T17:47:18.930 回答
2

你最后错过了一个“>”:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
于 2013-04-29T17:47:05.817 回答
2

您的第一个 LinearLayout 标签未关闭。>在它的末尾添加一个,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

                                   ^
于 2013-04-29T17:47:45.960 回答
-1

错误清楚地表明您错过了结束标签。每个 Layout 及其属性都需要有自己的开始和结束标记。添加

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
/>

或者

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

</LinearLayout>
于 2014-02-05T12:29:05.870 回答