Tôi đang cố gắng thêm một trường văn bản vào ứng dụng Android của mình trong Eclipse, nhưng sau đó tôi kéo Plain text
tùy chọn vào bố cục đồ họa, một thông báo ở dưới cùng xuất hiện. Nó đọc
Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
Exception details are logged in Window > Show View > Error Log
Ngay cả khi tôi đi đến Window > Show View
không có tùy chọn nhật ký lỗi. Toàn bộ trình thiết kế bây giờ là vô dụng, bởi vì tôi không thể sử dụng nó nữa cho đến khi tôi xóa EditText
trực tiếp khỏi xml. Nguyên nhân gây ra lỗi này là gì và làm cách nào để khắc phục lỗi này? Tôi đang chạy phiên bản mới nhất (kể từ hôm nay, 6-30-14) và Windows 8 Pro x64.
Đây là mã bố cục đầy đủ của tôi:
<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
. Nhân tiện, đó là một cái tên dài không cần thiết.