显示在 Card
底部的固定页脚。
适用于 Google Workspace 插件和 Google Chat 应用。
var fixedFooter = CardService .newFixedFooter() .setPrimaryButton( CardService .newTextButton() .setText("help") .setOpenLink(CardService.newOpenLink().setUrl("http://www.google.com")));
方法
方法 | 返回类型 | 简介 |
---|---|---|
setPrimaryButton(button) | FixedFooter | 在固定页脚中设置主按钮。 |
setSecondaryButton(button) | FixedFooter | 在固定页脚中设置辅助按钮。 |
详细文档
setPrimaryButton(button)
在固定页脚中设置主按钮。主按钮必须是 TextButtonStyle.FILLED
按钮。如果未设置主按钮的背景颜色,
按钮使用插件清单中定义的主色。
参数
名称 | 类型 | 说明 |
---|---|---|
button | TextButton | 要添加的按钮。 |
返回
FixedFooter
- 此对象,用于链接。
setSecondaryButton(button)
在固定页脚中设置辅助按钮。辅助按钮必须是 TextButtonStyle.OUTLINED
按钮。如果未调用 setPrimaryButton(button)
来设置主按钮,则此方法将毫无作用。
参数
名称 | 类型 | 说明 |
---|---|---|
button | TextButton | 要添加的按钮。 |
返回
FixedFooter
- 此对象,用于链接。