我很少收到java.lang.OutOfMemoryError
个例外。我想知道可能是根本原因。
android:background="@drawable/mydrawablebackgroundg"
的内容
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent"/>
<stroke android:width="2dp"
android:color="@android:color/black"
/>
<padding android:left="4dp"
android:top="4dp"
android:right="4dp"
android:bottom="4dp"
/>
<corners android:bottomRightRadius="1dp" android:bottomLeftRadius="1dp"
android:topLeftRadius="1dp" android:topRightRadius="1dp"/>
</shape>
导致异常的布局,第86行是
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/mylayout" >
<ImageView
android:id="@+id/myimageview"
style="@style/myimageview_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:scaleType="fitCenter" android:layout_centerVertical="true"
android:background="@drawable/mydrawablebackground"
android:src="@drawable/oohsmiley" />
</RelativeLayout>