清理并在eclipse控制台中构建项目获取错误

时间:2013-05-17 05:09:11

标签: android eclipse

在eclipse控制台中清理并构建项目时出错。还有一件事R.java in not be created it show error on R

错误就像

W/ResourceType( 7964): Bad XML block: header size 85 or total size 5529592 is larger than data size 0

任何帮助人员为什么会这样?

我正在使用这两个xml

itemlist.xml

<TextView
    android:id="@+id/txtNewsSource"
    android:layout_width="110dp"
    android:layout_height="110dp"
    android:layout_centerHorizontal="true"
    android:layout_centerInParent="true"
    android:layout_centerVertical="true"
    android:layout_margin="5dp"
    android:background="#64CBD8" />

和secone one main.xml

<com.krish.horizontalscrollview.CenterLockHorizontalScrollview
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
    </LinearLayout>
</com.krish.horizontalscrollview.CenterLockHorizontalScrollview>

<LinearLayout
    android:id="@+id/bottomLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@id/scrollView"
    android:orientation="horizontal"
    android:weightSum="2" >

    <Button
        android:id="@+id/btnPrev"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Prev" />

    <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Next" />
</LinearLayout>

<TextView
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@id/bottomLayout"
    android:layout_alignParentTop="true"
    android:layout_centerInParent="true"
    android:textColor="#FF0000"
    android:padding="@dimen/padding_medium" />

3 个答案:

答案 0 :(得分:1)

  1. First Copy&#34; android-support-v4.jar&#34;从您的主项目库中将其粘贴到您的所有外部库中。(意味着将所有android-support-v4.jar替换为您的主要一个支持库。)
  2. 确保没有重复的xml数据(比如说:外部库字符串文件和主项目的字符串文件中的相同代码。)
  3. 删除所有外部库,清理+构建项目。
  4. 再次包括您的外部库并清理。

答案 1 :(得分:0)

"W/ResourceType( 8032): Bad XML block: header size 85 or total size 5529592 is larger than data size 0"

表示您的XML资源格式不正确。

您需要解决XML错误,然后清理构建项目。

请验证您的XML online

答案 2 :(得分:0)

项目菜单中的第一个清洁项目 然后在您的类文件中修复导入,如下所示:

import com.your.package.xyz.R;