def getStopButtons(self):
rightBarButtons = []
rightBarButtons.append(ui.ButtonItem(image = ui.Image.named('iob:close_round_24'), action = self.stop, tint_color = self.tintColour))
rightBarButtons.append(ui.ButtonItem(image = ui.Image.named('iob:ios7_arrow_forward_32'), action = self.forward, tint_color = self.tintColour))
rightBarButtons.append(ui.ButtonItem(image = ui.Image.named('iob:ios7_arrow_back_32'), action= self.back, tint_color = self.tintColour))
if self.showButtons:
return rightBarButtons
else:
return []
评论列表
文章目录