Telegram bot:自定义键盘上的按钮位置

时间:2017-06-13 14:49:07

标签: python telegram telegram-bot python-telegram-bot

有没有办法在键盘上自定义按钮位置?

示例:我们有

QComboBox *combo = new QComboBox();
combo->addItem("One");
combo->addItem("Two");
combo->addItem("Three");
combo->setCursor(Qt::PointingHandCursor); // changes cursor only for LineEdit part, on popup cursor is still arrow
combo->view()->setCursor(Qt::PointingHandCursor); // does not affect popup view

结果我们有3个按钮的键盘,每个按钮都在它自己的行上。

我想在第一行有2个按钮,在第二行有1个按钮。有可能吗?

1 个答案:

答案 0 :(得分:2)

是的,当然!

[[button1, button2],
 [button3]]

整个列表中的每一行对应于kb上的一行