Package com.sun.lwuit.layouts

Examples of com.sun.lwuit.layouts.BoxLayout


   * @return
   */
  public void getGuiRosterItem() {
    conv_list = new Form(currentjid.getUsername()/*"Group: " + currentjid.group + " Status: " + currentjid.getPresence()*/);
    String state = currentjid.status_message;
    conv_list.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
    if (state != null && !state.equals("")) {
      MyTextArea t = new MyTextArea("Group: "+ currentjid.group + " Status: "+currentjid.getPresence());
      t.setEditable(false);
        t.getStyle().setFgColor(0xF1F57C);
      conv_list.addComponent(t);
View Full Code Here


      current_Jid = currentjid.getFullJid();
      group_Jid = currentjid.group;
      phone_num = currentjid.phone;
    }
    Form res = new Form(name);
    res.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
    TextArea jid = new TextArea(/*"jid", */current_Jid, 64);
    TextField group = new TextField(/*"group", */group_Jid, 32);
    TextField phone = new TextField(/*"phone num.",*/ phone_num, 32);
    infopool.put("jid", jid);
    infopool.put("group", group);
View Full Code Here

TOP

Related Classes of com.sun.lwuit.layouts.BoxLayout

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.