我正在ServiceNow的移动应用程序中创建分组列表屏幕。我看到“项目视图”字段是定义布局选项的JSON,但找不到关于格式/架构或JSON的任何文档。它们给出examples,其中包含一些选项,但没有任何内容可以告诉您所有可以使用的各种参数。
{
"Type": "ViewGroup",
"Orientation": "Vertical",
"Alignment": "Left",
"Distribution": "Auto",
"Children": [
{
"Type": "Text",
"Text": "PLACEHOLDER",
"CellId": "sys_group_by",
"TextColor": "#293e40",
"TextAlignment": "Left",
"MaxLines": 2,
"Font": {
"Weight": "regular",
"Size": 16
}
}
]
}
有人找到了Item View的整个JSON模式的引用吗?