业无高卑志当坚,男儿有求安得闲?这篇文章主要讲述在android布局文件中评论相关的知识,希望能为你提供帮助。
如何在android布局的xml文件中发表评论。我见过Comments in Android Layout xml- 但我想在家长内发表评论。
当我尝试这样做时,我在eclipse中遇到错误:
<
Button android:text="Button"
<
!-- this is a comment -->
android:id="@+id/Discon" >
<
/Button>
从xml的背景知识,我开始知道我们不能在属性中添加注释。有没有办法删除id作为属性并将其指定为元素? 或者有没有办法在元素属性中添加注释?
答案你不能在标签内嵌入评论。标签之间不是问题
<
!--
this is a comment
-->
<
Button android:text="Button"
android:id="@+id/Discon" >
<
/Button>
如果你想临时注释掉一个属性(如果那是你想知道的),你将不得不将它移到标签上并在那里注释。
<
Button android:text="Button"
android:id="@+id/Discon"
>
<
/Button>
==>
<
!--android:id="@+id/Discon" -->
<
Button android:text="Button"
>
<
/Button>
另一答案从技术上讲,不是评论,你可以买
<
Button comment="write whatever you want here" android:text="Button" ...
或者,如果要暂时删除属性,请从名称中删除
android:
。基本上Android在没有
android:
命名空间的情况下忽略了所有内容。另一答案我使用Android Studio,所以我只能告诉你对A.S的XML评论。
只需选择要对其进行注释的代码部分即可
【在android布局文件中评论】按(Ctrl + shift +?)它将添加< 1--您的代码 - > ,这里1是(Shift + 1)(感叹号)
还记得一件事,这是一个例外:例子
<
TextView
android:id="@+id/T_HomeworkMax1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF1E0101"
android:textAppearance="?android:textAppearanceSmall"
android:layout_marginStart="95dp"
android:text="Max" />
<
TextView
android:id="@+id/T_HomeworkMin1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF1E0101"
android:layout_marginStart="140dp"
android:textAppearance="?android:textAppearanceSmall"android:text="Min" />
在这里,您不能只从代码中选择一行或两行,您必须选择完整的节点(TextView)。
<
!-- <
TextView
android:id="@+id/T_HomeworkMax1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF1E0101"
android:textAppearance="?android:textAppearanceSmall"
android:layout_marginStart="95dp"
android:text="Max" />
-->
<
TextView
android:id="@+id/T_HomeworkMin1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF1E0101"
android:layout_marginStart="140dp"
android:textAppearance="?android:textAppearanceSmall"android:text="Min" />
现在,First TextView是Comment。
另一答案使用以下代码在Android Studio中发表评论:
评论/取消注释一段代码。 Ctrl + Shift +“/”
评论/取消注释一行代码。 Ctrl +“/”
另一答案XML不允许在tags()之间进行注释,这意味着您不能将注释放在属性中,因为它们位于其标记内。您无法删除属性并将其放在其标记之外,因为它不再是属性。
简而言之,你试图做的事情,就像你试图做的那样,它根本无法完成。
推荐阅读
- 如何减少Android中小部件的参考线()
- 如何在android中以小写显示文本()
- 在android中的视图中插入视图
- 从RxAndroid访问项目布局()
- 如何创建WhatsApp中的项目分隔符()
- Android - 使用纯Java而不是XML创建应用程序()
- 样式化单选按钮在android中使用cardview
- 如何在Android中加载带有动画的cardview GridView()
- 为什么android studio会自动在图形布局编辑器中重新排序视图和元素