Package threads

Examples of threads.SMSThread


      }
      else if (text.equals(Contents.online_choices[2]))
        { //sms
          if (currentjid.phone != null && !currentjid.phone.equals(""))
          {
            SMSThread sms = new SMSThread(currentjid.phone, this);
            sms.setText("Hello " + currentjid.getUsername() + "! " + Datas.jid.getUsername() + " wants to chat with you..");
            sms.start();
          }
          else
          { //set the number
            internal_state = ROSTER_DETAILS;
            Dialog.show("", Contents.noSavedPhone,null,Dialog.TYPE_WARNING,null,3000/*, getGuiRosterItem()*/);
 
View Full Code Here

TOP

Related Classes of threads.SMSThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.