ImageView正在崩溃的应用程序

时间:2013-08-14 00:24:27

标签: android imageview

在我的一个布局中,我有一个textView和一个imageView。 textView工作正常,但是当我添加imageView时,应用程序在调用该布局时会做一些奇怪的废话(当它被调用时,应用程序冻结几秒钟,然后屏幕变黑一段时间,然后应用程序被放置在后台)。

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/background">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#87cefa"
        android:textSize="20sp"
        android:text="Some Text"
        android:gravity="center"
        />

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/splashscreen"
        android:scaleType="fitXY"
        />

</LinearLayout>

我知道这是imageview,因为如果我把它拿走,一切顺利。在此先感谢!!

Logcat:08-13 19:37:13.483: E/Trace(23530): error opening trace file: No such file or directory (2)
08-13 19:37:13.803: E/SensorManager(23530): thread start
08-13 19:37:14.103: E/(23530): <s3dReadConfigFile:75>: Can't open file for reading
08-13 19:37:14.103: E/(23530): <s3dReadConfigFile:75>: Can't open file for reading
08-13 19:37:24.524: E/dalvikvm(23530): Fatal spin-on-suspend, dumping threads
08-13 19:37:24.574: E/dalvikvm(23530): threadid=1: stuck on threadid=12, giving up
08-13 19:37:24.574: A/libc(23530): Fatal signal 16 (SIGSTKFLT) at 0x00005bea (code=-6), thread 23549 (Thread-946)

1 个答案:

答案 0 :(得分:0)

您已为imageview指定了fill_parent。它将尝试覆盖整个屏幕。它甚至会重叠textview。尝试给出wrap_content。或者尝试放一个固定的尺寸。或尝试重量。否则尝试相对布局。