2016-12-02 137 views

回答

1

<!-- your comment here -->

这就像HTML commentting

1

例如

<!--This is a comment--> 
    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:padding="5dp"> 
1

您可以使用html comment tag这样的:

<!--This is a comment. --> 

但请注意,如果你添加在类似的android xml标记中发表评论这样的:

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    <!--WARNING This is not a valid comment. --> 
/> 

Android Studio中的布局编辑器会给你一个错误。您只能将其添加的XML之外标签是这样的:

<LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     <!--This is a valid comment. --> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
     /> 
    </LinearLayout> 
相关问题