应用程序显示没有错误,但崩溃

时间:2016-01-15 02:52:51

标签: android crash

我还很擅长编程。 我在练习应用程序上工作,每当我尝试运行它时它都会崩溃。我已经尝试将代码的主体移动到不同的应用模板,它仍然崩溃。我试着用它代替一个正常工作的应用程序中的代码,但它失败了。我确定它是代码中的东西,不能等到找出什么。提前感谢大家的帮助。 -约瑟夫 这是我的代码;

<RelativeLayout 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"
tools:ignore="contentDescription">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/goliath2"
        android:scaleType="centerCrop"
        android:id="@+id/imageGoliath"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello, I'm Goliath."
        android:textColor="#C62828"
        android:textSize="36sp"
        android:fontFamily="sans-serif-medium"
        android:textStyle="bold"
        android:id="@+id/ImGoliath"
        android:layout_centerInParent="true"
        android:layout_alignParentTop="true"
        android:padding="12dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Don't be afraid, I don't bite..."
        android:textSize="26sp"
        android:fontFamily="sans-serif-medium"
        android:textColor="#C62828"
        android:id="@+id/afraid"
        android:layout_below="@id/ImGoliath"
        android:textStyle="bold|italic"
        android:paddingLeft="12dp"
        android:paddingBottom="18dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/unless"
        android:text="Unless!"
        android:textColor="#C62828"
        android:textSize="52sp"
        android:textStyle="bold"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_below="@id/afraid"
        android:padding="24dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/Youreacricket"
        android:text="YOU'RE A CRICKET!"
        android:textColor="#C62828"
        android:layout_alignParentBottom="true"
        android:textSize="42sp"
        android:textStyle="bold"
        android:layout_centerInParent="true"
        android:paddingTop="60dp"/>

1 个答案:

答案 0 :(得分:0)

看来我的问题可能是图片文件过大。 用我在课堂上得到的androidparty图像替换图像后,应用运行正常。   感谢所有试图提供帮助的人。