它在ios的标题栏中设置后退按钮
f.setBackCommand(new Command("News") {
}
有没有办法像在ios中那样在android中显示后退图标? 三江源
答案 0 :(得分:2)
是的,您可以在Android上显示后退图标,使用工具栏API:
Toolbar t = new Toolbar();
f.setToolBar(t);
Command news = new Command("News", myIcon) {
@Override
public void actionPerformed(ActionEvent evt) {
}
};
news.putClientProperty("uiid", "BackCommand");
f.setBackCommand(news);
t.addCommandToLeftBar(news);
t.setTitle("My Form");