xml注释

发布时间 2023-06-29 15:28:10作者: L_I_B

把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" />