parseSdkContent失败无法初始化类android.graphics.Typeface

时间:2014-07-08 15:55:05

标签: android eclipse android-layout nullpointerexception

当我打开布局编辑器时, eclipse 会出现此错误:

parseSdkContent failed
Could not initialize class android.graphics.Typeface

当我尝试运行项目时,它会出现此错误:

An internal error occurred during: "Launching myapp".
java.lang.NullPointerException

每次我收到此错误,我都要重启eclipse。有什么解决方案吗?这个问题今天突然开始了。


XML文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#66000000"
     >

    <RelativeLayout
        android:id="@+id/refresh_match_layout"
        android:layout_width="fill_parent"
        android:layout_height="150dp"
        android:layout_centerInParent="true"
        android:layout_margin="15dp"
        android:background="@drawable/app_detay_lay_bg"
        android:orientation="vertical"
        android:padding="10dp"
        android:visibility="visible" >

        <ImageView
            android:id="@+id/app_icon"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:padding="10dp"
            android:textColor="#ffffff"
            android:textSize="20sp" />

        <TextView
            android:id="@+id/app_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="8dp"
            android:textColor="#000000"
            android:layout_toRightOf="@+id/app_icon"
            android:layout_marginTop="2dp"
            android:textSize="20sp" />

        <ImageButton
            android:id="@+id/app_detail_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="2dp"
            android:background="@null"
            android:src="@drawable/settings_detail"/>

        <ImageButton
            android:id="@+id/app_remove_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/app_icon"
            android:layout_alignTop="@+id/app_detail_button"
            android:background="@null"
            android:src="@drawable/settings_remove" />

    </RelativeLayout>

</RelativeLayout>

错误图片: enter image description here

4 个答案:

答案 0 :(得分:88)

我删除了home/.android文件夹,现在一切正常。

Windows 中,您可以在C:/Users/User/

中找到此文件夹

来源:https://stackoverflow.com/a/5883841/3681056

注意:如果您有两个版本的SDK和eclipse,它们都在同一台计算机上(并且使用相同的.android文件),如果您在版本上打开,则另一个版本会出现此错误。

答案 1 :(得分:4)

删除“.android”会暂时解决我的问题,因为有一段时间后它会再次出现..

这是另一个可能有帮助的原因和修复。这是因为在同一台机器上存在2个版本的SDK但是如果你只有一个版本(可能是21个),只需下载SDK的SDK平台20(4.4W)因为21的“layoutlib.jar”存在问题。开始应用以下内容:

  • 关闭Eclipse

  • 导航到您的sdk文件夹(类似于C:\ adt-bundle-windows-x86_64-20140321 \ sdk)

  • 转到平台文件夹 - &gt; android-21文件夹 - &gt;数据文件夹并重命名layoutlib.jar(仅用于备份)

  • 将同一个文件(layoutlib.jar)从android-20文件夹复制到此文件夹“android-21”

  • 启动Eclipse

答案 2 :(得分:2)

删除home / .android是没用的,我删除〜/ .android / avd它对我有用:)

答案 3 :(得分:1)

我也遇到了这个错误

parseSdkContent失败 无法初始化类android.graphics.Typeface

但我只能在Windows 7 64位操作系统上将Eclipse ADT从64位更改为32位后解决此问题。