我最近搬到了TitaniumMobile,我需要赶上很多东西。现在,我想把“搜索图标”放在左侧,尽管没有聚焦。但与默认参数一样,它将如下所示。
var search = Titanium.UI.createSearchBar({
showCancel:true,
height:43,
top:0
});
然后,我不知道如何修补搜索栏并最终欺骗这样。
var search = Titanium.UI.createSearchBar({
showCancel:true,
height:43,
top:0,
hintText:" "
});
但我不喜欢那种方式,还有其他方法吗?