渲染期间引发异常:java.lang.System.arraycopy
我对新的ADT版本有奇怪的问题。我已经从eclipse.org下载了新的Eclipse,然后在其上安装了ADT。一切正常。我可以为android创建一个项目,并且一切正常,除了: 尝试创建一个xml布局时,出现以下错误: Exception raised during rendering: java.lang.System.arraycopy 在错误日志中,我看到: Failed to render set of icons for AnalogClock, AutonCompleteTextView, button, SmallButton , .... 如果更改EditText为TextView,错误消失。即使出现此警告,我也可以运行我的程序,但是我想在图形部分中查看我的布局。 我的布局是: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/settingback" android:orientation="vertical" android:weightSum="480" > <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="50" android:gravity="right" android:orientation="horizontal" > <Button android:id="@+id/close" android:layout_width="50dp" android:layout_height="match_parent" android:background="#00000000" /> </LinearLayout> <View android:id="@+id/view1" …