Class GridItem
GridItem
用户在网格 widget 中与之互动的项。
适用于 Google Workspace 插件和 Google Chat 应用。
如需调用枚举,您需要调用其父类、名称和属性。例如
CardService.GridItemLayout.TEXT_BELOW
。
var gridItem = CardService.newGridItem()
.setIdentifier("itemA")
.setTitle("This is a cat")
.setImage(CardService.newImageComponent())
.setLayout(CardService.GridItemLayout.TEXT_BELOW);
详细文档
setIdentifier(id)
设置网格项的标识符。当用户点击此网格项时,系统会返回此 ID
父网格的 on_click 回调参数中。
参数
返回
GridItem
- 此对象,用于链接。
setLayout(layout)
设置网格项的文本和图片布局。默认值为 TEXT_BELOW
参数
返回
GridItem
- 此对象,用于链接。
setSubtitle(subtitle)
设置网格项的副标题。
参数
名称 | 类型 | 说明 |
subtitle | String | 副标题文本。 |
返回
GridItem
- 此对象,用于链接。
setTextAlignment(alignment)
设置网格项的水平对齐方式。默认值为 START。
参数
返回
GridItem
- 此对象,用于链接。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-22。
[null,null,["最后更新时间 (UTC):2024-08-22。"],[[["GridItem represents interactive elements within a grid widget, usable in Google Workspace Add-ons and Chat apps."],["Developers can set an identifier, image, layout, subtitle, text alignment, and title for each GridItem."],["When a user clicks a GridItem, its identifier is returned in the parent grid's on_click callback, enabling interactive functionality."],["GridItem leverages `CardService` methods for customization, such as `setTitle()`, `setImage()`, and `setLayout()`, to define its appearance and behavior."],["Default settings include TEXT_BELOW for layout and START for text alignment, offering a base configuration for GridItems."]]],[]]