I have a workable codes that uses ImageView in the layout. The application could be run successfully before I restart my Eclipse. After that, my application crash whenever I uses the particular image. I tried replacing the image with another image, and it could run successfully. The image that caused my app to crash has a dimension of 608 x 2964 and it is a PNG file.
Can someone tell me what is wrong? I don't really understand what is written in the LogCat because I am new in Android. Appreciate it if someone could help me. Thanks.
Here is the link to my LogCat : http://pastie.org/pastes/5053152/text?key=zg7tbpuj9zqvlje4v6aczq
This is my ImageView.
<ImageView
android:contentDescription="@string/image"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:adjustViewBounds="true"
android:src="@drawable/about_mj"
android:layout_gravity="center_horizontal"/>