0

我为此苦苦挣扎了一段时间。似乎是一个半错误。

如果您将 leftButton 或 rightButton 添加到 textField 中,如下所示:

var leftButton = Ti.UI.createButton({
    image: 'someImage.png'
})
var textField = Ti.UI.createTextField({

    leftButton: leftButton,
    leftButtonMode: Ti.UI.INPUT_BUTTONMODE_ALWAYS,
    leftButtonPadding: 100

})

...那么您将看不到您的按钮。为什么?

4

3 回答 3

1

此代码可能存在 2 个问题。1-检查您分配给按钮的图像路径..?(高度,宽度)用于测试目的尝试使用任何系统按钮,看看它是否出现。?

var leftButton = Titanium.UI.createButton({
    style:Titanium.UI.iPhone.SystemButton.DISCLOSURE
});

2-秒的问题可能是左键的填充尝试在没有填充的情况下使用它,然后看看会发生什么。

于 2012-11-30T06:51:02.070 回答
1
var win = Titanium.UI.createWindow({
    title:"Configuring text field and text area keyboard types",
    backgroundColor:"#347AA9",
    exitOnClose:true
});

//These buttons will appear within the text field
var clearButton = Titanium.UI.createButton({
    title:"Clear",
    height:24,
    width:52
});

var submitButton = Titanium.UI.createButton({
    title:"Submit",
    height:24,
    width:60
});

var textField = Titanium.UI.createTextField({
    top:"25%",
    height:35,
    width:600,
    backgroundColor:"#ffffff",
    borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED,
    hintText:"Type something",
    keyboardType:Titanium.UI.KEYBOARD_DEFAULT,
    leftButton:clearButton,
    rightButton:submitButton
});

clearButton.addEventListener("click", function(e){
    //Clear the value of the text field
    textField.value = "";
});

submitButton.addEventListener("click", function(e){
    //Pretend to submit the value of the text field
    //Be sure that you've typed something in!
    if(textField.value != ""){
        alert(textField.value); 
    }else{
        alert("Enter some text");
    }
});

//Add an event listener to the window that allows for the keyboard or input keys to be hidden if the user taps outside a text field
//Note: each text field to be blurred would be added below
win.addEventListener("click", function(e){
    textField.blur(); // Cause the text field to lose focus, thereby hiding the keyboard (if visible)
});

win.add(textField);

win.open();
于 2015-09-17T11:25:26.370 回答
0

问题出在 leftButtonMode 属性中。给它任何值,按钮就不会显示。如果您不使用此属性,按钮将正常显示。

leftButton 的 padding 属性不是问题。但是,如果您在 rightButton 上使用它,它可能会将您的按钮扔到屏幕外。我也尝试过负值,但没有成功。

还要注意 leftButton 和 rightButton 选项在 Android 上不起作用。

于 2012-11-23T16:07:30.753 回答