我知道如何为视图创建自定义属性,例如:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="SomeViewsCustomAttrs">
<attr name="someAttr" format="dimension" />
<attr name="anotherAttr" format="boolean" />
</declare-styleable>
</resources>
我想知道是否有办法向这些自定义属性添加文档。在 XML 编辑器中编辑布局时,您可以获得描述属性的工具提示。例如,如果您正在输入android:layout_width=
,它将为您提供以下信息,“指定视图的基本宽度。[维度,枚举]”
有没有办法为你自己的 attrs 提供它?
谢谢