本文介绍了有没有办法在gmail上并排显示两个小部件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在创建gmail附加组件-
要求
我想在同一行中包含按钮和键值附加组件-
状态
当前只能在1行上显示一个小部件
有什么方法可以并排显示两个小部件吗?
I am creating a gmail add on -
Requirement
I want to include a button and key value add-on on the same row -
Status
Currently only one widget can be shown on 1 line
Is there any way to show two widgets side by side ?
推荐答案
看看下面的屏幕截图
[ 1
我们通过在键值对上添加setOnClickAction和setButton方法来解决此问题.
We got around this by adding a setOnClickAction and setButton method on a key value pair.
可点击活动"和"+新建",并执行不同的操作.
Both "Activities" and "+New" are clickable and perform different actions.
activitiesListSection.addWidget(CardService.newKeyValue()
.setContent("<b>Activities</b>")
.setOnClickAction(saveAction)
.setButton(CardService.newTextButton()
.setText("+ New")
.setOnClickAction(saveAction))
.setIcon(CardService.Icon.DESCRIPTION));
这篇关于有没有办法在gmail上并排显示两个小部件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!