在xml文件中注释

时间:2013-07-23 01:32:51

标签: android xml

android项目项目中的xml文件通常格式如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<Button
    android:id="@+id/btn_dialog"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:text="Click to display a dialog"
    android:onClick="onClick" /> 
</LinearLayout>  

是否可以在标签中注释掉一个或两个参数?例如,我可以在上面的代码中仅注释android:layout_width行或android:layout_width and android:layout_height行吗?

2 个答案:

答案 0 :(得分:3)

抱歉,XML不允许您在标记中嵌入注释。

http://www.w3.org/TR/2008/REC-xml-20081126/#sec-comments

答案 1 :(得分:2)

修改:

抱歉,评论不能在标签内发生,例如<tag ></tag>.