0

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

4

2 回答 2

3

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

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

于 2013-07-23T01:35:12.923 回答
2

编辑 :

抱歉,标签内不能出现评论,例如<tag ></tag>.

于 2013-07-23T01:42:25.187 回答