使用简单的Android测验应用程序。我想询问用户有关xml和java文件中的注释的问题。如何在strings.xml文件中编写xml注释,以显示在屏幕上?
<string name="comments_1"> // </string>
<string name="comments_2"> <!-- --></string>
<string name="comments_3"> /** */</string>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/comments_2"/>
答案 0 :(得分:1)
你可以这样逃避:
<string name="comments_2"><!-- --></string>