突出显示当前选定的文本字段 - 最佳方法

Highlighting current selected textfield - best approach

我正在尝试在移动设备上实现这样的效果 (ios + android): http://i.imgur.com/6zaTdRd.png

当前选定的文本字段带有蓝色图标 + 下划线

所以我的框架不支持对任何类型的位图图像进行灰度缩放,所以我需要在两个图像之间交换才能实现这种效果。

我当前的实现如下所示:

请注意 Titanium Alloy MVC 框架,但我猜基本逻辑应该是相似的。

我监听 blur/focus 事件来切换当前图像

$.firstNameField.addEventListener('focus', function(e){
    swapImages($.firstNameField.getParent());
});

$.lastNameField.addEventListener('focus', function(e){
swapImages($.lastNameField.getParent());
});

然后我像这样交换图像:

/**
* Swaps between the images (..._0 and ..._1) of an ImageView nested in a
TableRow  
* ..._0 Greyscale image
* ..._0 Colour image
* @param e current TableViewRow
*/
function swapImages(e){
    var imagePathSplit = (e.children[0].image).split('_'); 
    var newImagePath = null;

    if(imagePathSplit[1] == "0.png")
        newImagePath = imagePathSplit[0] + "_1.png";
    else
        newImagePath = imagePathSplit[0] + "_0.png";

    e.children[0].image = newImagePath;
    return;
}

这看起来不太好,特别是因为我需要更多具有此功能的字段,我还想在字段之间实现制表符(使用 Return key = NEXT),这将进一步增加气球每个字段多 1 个事件侦听器。

如何理想地完成这样的事情?我可以想到一种方法,只需以数组形式在代码中创建字段,这应该有助于简化问题(不再寻找)对于 Parent/Children 来说还很远,但最终仍然会使用相当多的听众进行切换,对吗?

编辑:忘记添加我如何设置 textFields:

<TableView id="paypalTable">
<TableViewSection>
    <TableViewRow id="firstNameView" class="tableRow">
        <ImageView id="firstNameIcon" class="textFieldIcon"/>
        <TextField id="firstNameField" class="textField"/>
    </TableViewRow>

我在我的一个项目中尝试过类似的东西。尽管我有一个 Alloy 项目,但我必须使用经典方法来获得我想要的行为。

在我的控制器中:

var textFields            = [];
var yourTextFieldsArray   = [];

for (var i = 0; i < yourTextFieldsArray; i++) {
    //Set the selected state to false initially. Maybe you need another command for it.
    textFieldIsSelected[i] = false;
    //create your new view
    textFields[i] = Ti.UI.createView({
        top : topValues[i],
        width : Titanium.UI.FILL,
        height : height,
        id : i + 1,
        touchEnabled : true
    });
    textFields[i].addEventListener('click', function(e) {
        //Check the source id
        if (e.source.id - 1 > -1) {
            //use your function swapImages(e.source.id). Notice the slightly different parameter since you do not need the complete event.
            swapImages(e.source.id);
        }
}

function swapImages(id){
    //Check the the path variable as you did
    var imagePathSplit = (textFields[i-1].image).split('_'); 
    var newImagePath = null;

    if(imagePathSplit[1] == "0.png")
        newImagePath = imagePathSplit[0] + "_1.png";
    else
        newImagePath = imagePathSplit[0] + "_0.png";

    textFields[i-1].image = newImagePath;
}

这种方法让您可以为每个 属性 使用相同的事件侦听器。

请注意我的 ID 从 1 开始,不是 从 0 开始。这是因为我必须为图像实现这样的行为,而 ImageViews 不接受 id=0 .我的猜测是 TextViews 也不会这样做,所以你应该坚持下去。进一步注意,您需要递减 id 才能在 textFields 数组中获取相应的对象。否则你会得到一个越界错误。

您应该为 NEXT 事件再创建一个事件侦听器。实现方式与第一个eventListener相同。也许代码并不完美,因为我是凭记忆写的。如果还有什么问题欢迎在评论中提出。