Я намагаюся додати текстове поле до своєї програми Android у програмі Eclipse, але потім перетягую цю 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
. Що, до речі, є зайво довгою назвою.