2015-05-09 32 views
0

當我製作這個xml文件時,它給了我一個錯誤,「文件意外結束」。Android Studio錯誤「意外的文件結尾」

<?xml version="1.0" encoding="utf-8"?> 

<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:minHeight="?android:attr/listPreferredItemHeight" 
android:gravity="center_vertical" 
android:id="@+id/list_item_forecast_textview" /> 

我有一個Java類引用本的TextView的標識,但它「不能解析符號‘list_item_forecast_textview’。

我如何擺脫文件錯誤的意外結束的和固定的ID ?參考問題

+0

任何xml資源文件的父項不能是「TextView」 –

回答

0

您的XML看起來好像沒什麼問題,當我試圖相同的片斷爲您提供的,用於顯示文本中添加,我覺得沒有問題

「id引用問題」 - 因爲你的資源不會被編譯正確的,R.java沒有參考到你的TextView,因此在Java類(比如說Activity)中將無法找到你的TextView。

也許,您可能會嘗試「清潔項目」和/或「重建項目」。如果沒有幫助,請嘗試重新啓動您的Android Studio本身。 enter image description here

相關問題