在 Titanium 中更改 HTML5 左侧导航按钮的标题
Change the HTML5 left navigation button title in Titanium
我正在为我的 HTML5 应用程序使用 titanium classic。我想将标题为 "Back" 的左侧导航按钮更改为标题 "Cancel"。我尝试使用 "leftNavButton" 属性 更新按钮,但没有用。谁能告诉我如何更改文本。
谢谢,
斯瓦西
你能post你的代码示例吗?
通常您需要添加一个 Ti.UI.Button 和您想要的属性(加上事件处理程序),然后将其分配给 Window.leftNavButton 属性.
所以:
var button = Ti.UI.createButton({title:'Cancel'});
button.addEventListener('click', function(){
// handle it here
});
// assuming you have the window in 'win' variable
win.leftNavButton = button;
我正在为我的 HTML5 应用程序使用 titanium classic。我想将标题为 "Back" 的左侧导航按钮更改为标题 "Cancel"。我尝试使用 "leftNavButton" 属性 更新按钮,但没有用。谁能告诉我如何更改文本。
谢谢, 斯瓦西
你能post你的代码示例吗?
通常您需要添加一个 Ti.UI.Button 和您想要的属性(加上事件处理程序),然后将其分配给 Window.leftNavButton 属性.
所以:
var button = Ti.UI.createButton({title:'Cancel'});
button.addEventListener('click', function(){
// handle it here
});
// assuming you have the window in 'win' variable
win.leftNavButton = button;