Titanium 和 Android:在文本字段中使用按钮

ade*_*rsq 3 mobile android titanium

是否可以制作带有按钮的文本字段?我找到了 rightButton 和 leftButton 属性,但是使用 Android(模拟器)不起作用。还有另一种选择吗?

那是使用的代码:

var rightButton1 = Titanium.UI.createButton({
    color:'#fff',
    width:25,
    height:25,
    right:10,
    backgroundImage:'plus.png',
    backgroundSelectedImage:'plus.png',
    backgroundDisabledImage: 'plus.png'
});

rightButton1.addEventListener('click',function()
{
    Titanium.UI.createAlertDialog({
        title:'Button clicked',
        message:'Button clicked'
    }).show();
});

var textField3 = Titanium.UI.createTextField({
    color:'#336699',
    width:"auto",
    height:"auto",
    borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED,
    rightButton:rightButton1
});
Run Code Online (Sandbox Code Playgroud)

提前致谢。

bh8*_*h88 5

根据KitchenSink 的说法,它目前是 iPhone 的唯一功能。

if(Titanium.Platform.name == 'iPhone OS') {
    data.push({title:'Buttons on Textfields', hasChild:true, test:'../examples/textfield_buttons.js'});
}
Run Code Online (Sandbox Code Playgroud)

但是我不明白为什么你不能通过创建 aview并将按钮放在 的顶部来伪造它,textField因为Titanium.UI.Android支持zIndex很好,并且focus事件可以切换button.

var view = Ti.UI.createView();

var textField = Ti.UI.createTextField({
    // cordinates using top, right, left, bottom
    zIndex: 1
});

var button = Ti.UI.createButton({
    // cordinates using top, right, left, bottom
    visible: false,
    zIndex: (textField.zIndex + 1)
});

view.add(textField);
Ti.UI.currentWindow.add(button);
Ti.UI.currentWindow.add(view);

// you only need the listeners if you want to hide and show the button
textField.addEventListener('focus', function(e) {
    button.show();
});

textField.addEventListener('blur', function(e) {
    button.hide();
});
Run Code Online (Sandbox Code Playgroud)