把xml代码注释掉:
<!-- 这是一个注释 -->
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World" />
<!--
这是多行注释的示例。
可以在注释中添加多行描述或说明。
-->
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me" />
标签:xml,注释,代码
From: https://www.cnblogs.com/miong/p/17514312.html