android的布局xml⽂件如何添加注释?
xml布局⽂件如图添加注释后报错,错误内容如下:
上⽹查阅xml添加注释的语法规则:
XML 中的注释
在 XML 中编写注释的语法与 HTML 的语法很相似:
<!--This is a comment-->
并不是注释本⾝的问题。
因此可能是Android中的xml有特殊的规定,继续搜索发现有⽹友说:
Android中的xml只能在组件布局代码后,或者在组件的前⾯添加注释。如下所⽰:
<RelativeLayout
android:id="@+id/item_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!--  -->
<LinearLayout
android layout布局
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!--  -->
</LinearLayout>
</RelativeLayout>
果然这样之后就没有问题了。。。OTZ

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。