在Eclipse中的Android应用程序:图形布局上没有显示编辑文本
在Eclipse中的Android应用程序:图形布局上没有显示编辑文本
我试图在Eclipse中的Android应用程序上添加一个文本字段,但是当我将Plain text
选项拖到图形布局上时,底部会弹出一条消息。它显示:
渲染期间引发异常:java.lang.System.arraycopy([CI[CII)V 异常详细信息记录在窗口>显示视图>错误日志
即使我转到窗口>显示视图
,也没有错误日志选项。整个设计工具现在没用了,因为我无法再使用它,除非直接从xml中删除EditText
。是什么导致了这个错误,我该如何修复?我正在运行最新版本(截至今天,6-30-14),Windows 8 Pro x64。
这是我的完整布局代码:
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="${relativePackage}.${activityClass}" > android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginTop="18dp" android:text="@string/welcome_text" /> android:id="@+id/editText1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:ems="10" android:inputType="text">