Eclipse의 Android 앱에 텍스트 필드를 추가하려고하는데 Plain text
옵션을 그래픽 레이아웃으로 드래그 하면 하단에 메시지가 나타납니다. Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
Exception details are logged in Window > Show View > Error Log
내가 가
더라도 Window > Show View
오류 로그 옵션이 없습니다. EditText
xml 에서 직접 삭제할 때까지 더 이상 사용할 수 없기 때문에 전체 디자이너는 이제 쓸모가 없습니다 . 이 오류의 원인은 무엇이며 어떻게 해결합니까? 최신 버전 (현재 6-30-14)과 Windows 8 Pro x64를 실행하고 있습니다.
내 전체 레이아웃 코드는 다음과 같습니다.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<TextView
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" />
<EditText
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">
<requestFocus />
</EditText>
</RelativeLayout>
welcome_type_in_a_new_or_existing_note_name
. 그건 그렇고, 불필요하게 긴 이름입니다.