2015-09-12 87 views
-1

我有2天的Android體驗...
這種佈局中的標記有什麼問題?
它說標記開始沒有關閉,但我不必關閉每個TextView與/>,對不對?爲什麼我的標籤沒有正確關閉?

該教程的傢伙說,你只需要在最後只輸入一個/>

<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:context=".MainActivity"> 

<TextView 
    android:text="Happy Birthday Mert" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
<TextView 
    android:text="from cengiz" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
<ImageView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:src="@drawable/cake" 
/> 
</RelativeLayout> 

回答

0

I don't have to close every TextView with /> right?
當然,你必須

The tutorial guy said you need to put only one /> at the end?
我真的懷疑程序員會這麼說。

<TextView 
    android:text="Happy Birthday Mert" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
<TextView 
    android:text="from cengiz" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 

必須

<TextView 
    android:text="Happy Birthday Mert" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
/> 
<TextView 
    android:text="from cengiz" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
/> 
5

每個標籤的XML具有封閉。在你的情況下,這兩個textview必須像這樣關閉。

<TextView 
    android:text="from cengiz" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" /> 

或類似這樣的

<TextView 
    android:text="from cengiz" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
</TextView> 
相關問題