Ich versuche, meiner Android-App in Eclipse ein Textfeld hinzuzufügen, aber dann ziehe ich die Plain text
Option auf das grafische Layout. Eine Meldung unten wird angezeigt. Es lautet
Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
Exception details are logged in Window > Show View > Error Log
Auch wenn ich gehe, Window > Show View
gibt es keine Fehlerprotokolloption. Der ganze Designer ist jetzt nutzlos, weil ich ihn nicht mehr verwenden kann, bis ich ihn EditText
direkt aus der XML lösche . Was verursacht diesen Fehler und wie behebe ich ihn? Ich verwende die neueste Version (Stand heute, 30.06.14) und Windows 8 Pro x64.
Hier ist mein vollständiger Layoutcode:
<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
. Das ist übrigens ein unnötig langer Name.