我有一个在布局中使用 ImageView 的可行代码。在我重新启动 Eclipse 之前,该应用程序可以成功运行。之后,每当我使用特定图像时,我的应用程序就会崩溃。我尝试用另一个图像替换图像,它可以成功运行。导致我的应用程序崩溃的图像尺寸为 608 x 2964,它是一个 PNG 文件。
有人可以告诉我有什么问题吗?我不太明白 LogCat 中写了什么,因为我是 Android 新手。如果有人可以帮助我,将不胜感激。谢谢。
这是我的 LogCat 的链接:http://pastie.org/pastes/5053152/text?key=zg7tbpuj9zqvlje4v6aczq
这是我的图像视图。
<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"/>