2012-11-04 83 views
-1

在Android中,使用XML時,如何關閉註釋?Android:評論未關閉 - >

這一塊我的代碼:

<Button 
    android:id="@+id/25" 
    android:layout_width="fill_parent" 
    <!-- Last Button in the Row occupying all the remaining Space --> 
    android:layout_height="wrap_content" 
    android:layout_below="@id/five" 
    android:layout_toRightOf="@id/20" 
    android:text="25" 
    android:textSize="20dp" /> 

顯然,我已經和關閉了評論 - >這是我所學到和看到網上資源。

但是,Eclipse並沒有將其視爲已關閉的評論,所有評論之後的文本也被視爲評論。

我該如何解決這個問題?

回答

-1

保持你的標籤外的評論。

事情是這樣的:

<!-- Last Button occupying the whole space --> 
<Button ... /> 
2

您不能將註釋放入xml標籤中。

你必須移動您的評論標籤之外,像這樣:

<!-- My Comment --> 
<Button ... /> 
0

不能其間的一個標記註釋,上面送花兒給人評論是這樣的:

<!-- Last Button in the Row occupying all the remaining Space --> 
<Button 
    android:id="@+id/25" 
    android:layout_width="fill_parent" 

    android:layout_height="wrap_content" 
    android:layout_below="@id/five" 
    android:layout_toRightOf="@id/20" 
    android:text="25" 
    android:textSize="20dp" />