Class GridItem
GridItem
使用者在格狀小工具中互動的項目。
適用於 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。當使用者點選這個格狀項目時,系統會傳回這個 ID
父格線的 on_click 回呼參數中。
參數
回攻員
GridItem
:這個物件用於鏈結。
setLayout(layout)
設定格線項目的文字和圖片版面配置。預設值為 TEXT_BELOW
參數
回攻員
GridItem
:這個物件用於鏈結。
setSubtitle(subtitle)
設定格線項目的副標題。
參數
名稱 | 類型 | 說明 |
subtitle | String | 副標題文字。 |
回攻員
GridItem
:這個物件用於鏈結。
setTextAlignment(alignment)
設定格線項目的水平對齊方式。預設值為 START。
參數
回攻員
GridItem
:這個物件用於鏈結。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-08-22 (世界標準時間)。
[null,null,["上次更新時間: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."]]],[]]