如果我使用此布局,我在Android应用程序中出现错误:
<LinearLayout 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"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
这是我看到的错误,如果我想在图形布局中看到布局:
Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
Exception details are logged in Window > Show View > Error Log
这是我的版本
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="21" />
答案 0 :(得分:2)
您不能在4.4W上使用EditText。如果您未下载API 19,则将API更改为19或更低,然后您可以从SDK Manager下载API级别19。