0

我有一系列按钮。

每个按钮有 2 种不同的状态:第一种状态,第二种状态。每次单击时,按钮会变为交替状态。

在一个场景中,如果我点击 Button1,它将处于第二状态。然后我点击 Button2,Button2 将变为第二状态,而 Button1(或任何其他处于第二状态的按钮)返回到第一状态。

如何在 Appcelerator Titanium 中执行此操作?

我已经创建了这样的按钮

function createButtons(data){

    for (var i = 0; i < data.length; i++){
        //Creating each button
        var button  = Titanium.UI.createImageView({
            image:  data[i].path,
            value: 1
        });

        //Adding the buttons to the center view
        centerButtons.add(button);
    }
}

每次单击时,我都会value将按钮的值更改为 1 或 2,以识别按钮所处的状态。问题是,当我单击 Button1 时,我可以更改它的值,但我不知道如何检测哪些其他按钮已经处于第二状态,以便我可以将其重置为第一状态?

4

2 回答 2

3

以下示例代码将简单地完成您的工作。这里我使用了按钮而不是 imageView。您可以使用它更改您的代码。

var win = Ti.UI.createWindow({
    backgroundColor : 'white'
});
var currentView = Ti.UI.createView({
    backgroundColor : '#EFEFEF'
});
var button = [],top = 0;
for (var i = 0; i < 5; i++){
    top += 80;
    //Creating each button
    button[i]  = Titanium.UI.createButton({
        color : 'red',
        top   : top,
        width : '80%',
        value : 1
    });
    button[i].title  = 'State ' + button[i].value;
    button[i].addEventListener('click',changeState);
    //Adding the buttons to the center view
    currentView.add(button[i]);
}

var buttonState  = Titanium.UI.createButton({
    color  : 'red',
    top    : top + 80,
    title  : 'View button states',
    width : '80%',
});

var lblStates  = Titanium.UI.createLabel({
    color  : 'red',
    layout: 'horizontal',
    top    : top + 160,
    text  : 'Click on show button to view the button states',
    width : '80%',
});

buttonState.addEventListener('click', showButtonStates);
currentView.add(lblStates);
currentView.add(buttonState);
win.add(currentView);
win.open();
//Changing the state of the clicked button
function changeState(e){
    e.source.value= 2;
    e.source.title  = 'State ' + e.source.value; 
    for(var i = 0;i<5;i++){
        if(e.source !== button[i]){
            button[i].value = 1;
            button[i].title  = 'State ' + button[i].value; 
        }
    }    
}
//To display the button state
function showButtonStates(){
    lblStates.text = "";
    for(var i =0;i<5;i++){
        lblStates.text = lblStates.text + '\nbutton' + (i+1) + ' ---> state: ' + button[i].value; 
    }
}
于 2013-03-14T05:46:53.353 回答
0
  • 每当单击某些内容时,将所有按钮重置为原始状态,然后为新按钮设置新状态...
  • ...或跟踪上次更改的按钮(变量?!那些是什么?),并在为新按钮设置新状态之前将其还原。
于 2013-03-13T19:00:01.183 回答