Appcelerator更改按钮文本

时间:2010-11-10 11:28:50

标签: android text button titanium appcelerator

问候,

我正在尝试更改appcelerator中按钮的文字。

现在我可以更改一次,但是一旦发生某些事件,我就无法更改文本。

以下是代码:

var login=Titanium.UI.createButton({
   title:'Login',
     width:250,
     top:330
});
win.add(login);
var xhr=Titanium.Network.createHTTPClient();
login.addEventListener('click', function(e){
     login.title="Please wait...";   //this line works fine
     xhr.onload=function(){
            login.title="Login";   //this line doesn't work
            if(uname.hasText){
                 uname.value=this.responseText;
            }
     };
     xhr.onerror=function(){
            login.title="Login";   //this line doesn't work
            alertDialog.show();
     };
     xhr.open("POST","http://www.asdf.com/ajax/login.php");
     if(uname.hasText && pword.hasText){
            xhr.send({"uname":uname.value,"pword":pword.value});
     }else{
            alertDialog.show();
     }
});

我现在根本不知道该怎么做!

非常感谢任何见解。

非常感谢,

1 个答案:

答案 0 :(得分:0)

您应该在eventListener

中创建HTTPClient
login.addEventListener('click', function(e){
    var xhr=Titanium.Network.createHTTPClient();
     xhr.onload=function(){};
     xhr.onerror =function(){};
     xhr.onreadysetstate =function(){};
}