2016-01-14 108 views
0

我遇到「意外的文件結束」,我不知道爲什麼。我確信這很簡單,但我還沒有弄明白。 任何幫助或建議將不勝感激。 這是我的代碼,謝謝。意外的文件結束,不知道爲什麼

<FrameLayout 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:context="com.example.superjoe.practicecard.FullscreenActivity"> 
<RelativeLayout 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 
<ImageView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:src="@drawable/goliath1" 
    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="36dp" 
    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="26dp" 
    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="52dp" 
    android:textStyle="bold" 
    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"/> 
</RelativeLayout> 

回答

0

您需要在您的RelativeLayout標記下關閉FrameLayout標記。

</FrameLayout> 
+0

非常感謝。我嘗試過輸入類似的東西,但是把它放在錯誤的地方或者輸入了錯誤的東西。再次感謝! –

+0

不客氣!你能把我的答案標記爲正確嗎?謝謝! – arjabbar

+0

這個問題已經解決,但我無法讓應用程序運行,儘管多次搞亂了它。學習過程... –