setupUI(安装ui)
参数:
function main() {
setupUI();
}
ui(获取ui控件)
参数:
function main() {
ui('name').setText('hello');
}
createUI(动态创建界面)
参数:
function main() {
setupUI();
}
function onClick(event) {
var node = createUI(``);
// 在容器的最前面添加
ui('gp').add(node, 0)
}
openUI
参数:
function main() {
openUI('newUI');
}
closeUI
showDialog
参数:
showDialog(0, '是否确认运行该程序', '运行', [{type:'positive', text:'确定', fn: OnConfirmExe}, {type:'negative', text:'取消'}]);
参数:
showPopupMenu(view, [{id: 0, text:'编辑'}, {id: 1, text:'删除'}], OnMenuItemClick);