【发布时间】:2014-07-08 15:55:05
【问题描述】:
当我打开布局编辑器时,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>
错误图片:
【问题讨论】:
-
这是发生在任何新项目上还是仅在这个项目上?
-
您最近是否更新了 SDK 工具或 ADT 插件,如果有,请再次检查两者都没有更新
-
这只发生在这个项目中,我没有更新任何东西。幸运的是,它现在已修复。
标签: android eclipse android-layout nullpointerexception