Smartface 将搜索栏添加到操作栏
Smartface add searchbar to actionbar
我想在操作栏中添加搜索栏。我不知道该怎么做。你能告诉我一个示例代码吗?也许这段代码可能不正确。
srcBar = new SMF.UI.SearchBar({
width:"100%",
height:"10%",
left:"0%",
top:"20%",
icon:"arama_icon.png",
setShowsCancel : true,
text:""
});
this.actionBar.menuItems = [srcBar];
我解决了这个问题。我们需要为 android 使用 actionView,为 iOS 使用 stickToNavigationBar。
var srcBar = new SMF.UI.SearchBar({
width:"100%",
height:"10%",
left:"0%",
top:"20%",
icon:"arama_icon.png",
setShowsCancel : true,
text:"",
actionView:true,
stickToNavigationBar:true,
fontColor:"white"
});
Pages.FrmGoruntuleme.add(srcBar);
我想在操作栏中添加搜索栏。我不知道该怎么做。你能告诉我一个示例代码吗?也许这段代码可能不正确。
srcBar = new SMF.UI.SearchBar({
width:"100%",
height:"10%",
left:"0%",
top:"20%",
icon:"arama_icon.png",
setShowsCancel : true,
text:""
});
this.actionBar.menuItems = [srcBar];
我解决了这个问题。我们需要为 android 使用 actionView,为 iOS 使用 stickToNavigationBar。
var srcBar = new SMF.UI.SearchBar({
width:"100%",
height:"10%",
left:"0%",
top:"20%",
icon:"arama_icon.png",
setShowsCancel : true,
text:"",
actionView:true,
stickToNavigationBar:true,
fontColor:"white"
});
Pages.FrmGoruntuleme.add(srcBar);