本文整理汇总了Java中org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton类的典型用法代码示例。如果您正苦于以下问题:Java KeyboardButton类的具体用法?Java KeyboardButton怎么用?Java KeyboardButton使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
KeyboardButton类属于org.telegram.telegrambots.api.objects.replykeyboard.buttons包,在下文中一共展示了KeyboardButton类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createMainSelectKeyboard
import org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton; //导入依赖的package包/类
/**
* Creates the main select menu for selecting a date
* @return the keyboard
*/
public ReplyKeyboard createMainSelectKeyboard() {
ReplyKeyboardMarkup keyboard = new ReplyKeyboardMarkup();
KeyboardRow firstRow = new KeyboardRow();
firstRow.add(messagesService.getMessage(Messages.COMMAND_DATE_TODAY));
firstRow.add(messagesService.getMessage(Messages.COMMAND_DATE_TOMORROW));
KeyboardRow secondRow = new KeyboardRow();
secondRow.add(messagesService.getMessage(Messages.COMMAND_CHANGE_MENSA));
secondRow.add(messagesService.getMessage(Messages.COMMAND_WEEKDAYS));
KeyboardRow thirdRow = new KeyboardRow();
KeyboardButton selectNearestMensaButton = new KeyboardButton(messagesService.getMessage(Messages.COMMAND_SELECT_NEAREST_MENSA));
selectNearestMensaButton.setRequestLocation(true);
thirdRow.add(selectNearestMensaButton);
keyboard.setResizeKeyboard(true);
keyboard.setKeyboard(Arrays.asList(firstRow, secondRow, thirdRow));
return keyboard;
}
示例2: toJson
import org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton; //导入依赖的package包/类
@Override
public JSONObject toJson() {
JSONObject jsonObject = new JSONObject();
JSONArray jsonkeyboard = new JSONArray();
for (KeyboardRow innerRow : this.keyboard) {
JSONArray innerJSONKeyboard = new JSONArray();
for (KeyboardButton button : innerRow) {
innerJSONKeyboard.put(button.toJson());
}
jsonkeyboard.put(innerJSONKeyboard);
}
jsonObject.put(ReplyKeyboardMarkup.KEYBOARD_FIELD, jsonkeyboard);
if (this.oneTimeKeyboad != null) {
jsonObject.put(ReplyKeyboardMarkup.ONETIMEKEYBOARD_FIELD, this.oneTimeKeyboad);
}
if (this.resizeKeyboard != null) {
jsonObject.put(ReplyKeyboardMarkup.RESIZEKEYBOARD_FIELD, this.resizeKeyboard);
}
if (this.selective != null) {
jsonObject.put(ReplyKeyboardMarkup.SELECTIVE_FIELD, this.selective);
}
return jsonObject;
}
示例3: serialize
import org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton; //导入依赖的package包/类
@Override
public void serialize(JsonGenerator gen, SerializerProvider serializers) throws IOException {
gen.writeStartObject();
gen.writeArrayFieldStart(KEYBOARD_FIELD);
for (KeyboardRow innerRow : keyboard) {
gen.writeStartArray();
for (KeyboardButton button : innerRow) {
gen.writeObject(button);
}
gen.writeEndArray();
}
gen.writeEndArray();
if (this.oneTimeKeyboad != null) {
gen.writeBooleanField(ONETIMEKEYBOARD_FIELD, oneTimeKeyboad);
}
if (this.resizeKeyboard != null) {
gen.writeBooleanField(RESIZEKEYBOARD_FIELD, resizeKeyboard);
}
if (this.selective != null) {
gen.writeBooleanField(SELECTIVE_FIELD, selective);
}
gen.writeEndObject();
gen.flush();
}
示例4: mainMenu
import org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton; //导入依赖的package包/类
/**
* Shows the main menu.
*
* @param message
*/
private void mainMenu(String message) {
SendMessage sendMessagerequest = new SendMessage();
sendMessagerequest.setChatId(message);
sendMessagerequest.setText(i18n.msg("welcome_message"));
// main keyboard
KeyboardRow row = new KeyboardRow();
row.add(new KeyboardButton(i18n.msg("rooms")));
row.add(new KeyboardButton(i18n.msg("objects")));
KeyboardRow row2 = new KeyboardRow();
row2.add(new KeyboardButton(i18n.msg("plugins")));
//row2.add(new KeyboardButton(i18n.msg("languages")));
ReplyKeyboardMarkup markup = new ReplyKeyboardMarkup();
markup.setResizeKeyboard(true);
ArrayList<KeyboardRow> rows = new ArrayList<>();
rows.add(row);
rows.add(row2);
markup.setKeyboard(rows);
sendMessagerequest.setReplyMarkup(markup);
try {
sendMessage(sendMessagerequest);
} catch (TelegramApiException e) {
e.printStackTrace();
}
}
示例5: getKeyboardMarkup
import org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardButton; //导入依赖的package包/类
private static ReplyKeyboard getKeyboardMarkup() {
ReplyKeyboardMarkup keyboardMarkup = new ReplyKeyboardMarkup();
keyboardMarkup.setResizeKeyboard(true);
keyboardMarkup.setOneTimeKeyboard(true);
keyboardMarkup.setSelective(true);
List<KeyboardRow> keyboard = new ArrayList<>();
KeyboardRow row = new KeyboardRow();
KeyboardButton button = new KeyboardButton();
button.setText("Button1");
button.setRequestContact(true);
row.add(button);
keyboard.add(row);
keyboardMarkup.setKeyboard(keyboard);
return keyboardMarkup;
}