J2ME GUI实战之八 ----------LWUIT的List控件

本文来自:http://blog.csdn.net/hellogv/ ,转载必须注明出处!
首先先给出本例的效果图:
J2ME GUI实战之八 ----------LWUIT的List控件

List在LWUIT中,可以有Button 与 BoxLayout-Y 取代,当然是在列项不多的时候。当列项多时,那就是LIST更省资源了!LWUIT的List比原List更强大,可以在LIST中实现一行存在多列的效果,并且背景还可以设置,不得不赞一下!
以下给出List最简单的使用代码:
  1. /*
  2. *Copyright?2008SunMicrosystems,Inc.Allrightsreserved.
  3. *Useissubjecttolicenseterms.
  4. *
  5. */
  6. packagecom.sun.lwuit.uidemo;
  7. importcom.sun.lwuit.Button;
  8. importcom.sun.lwuit.Command;
  9. importcom.sun.lwuit.Dialog;
  10. importcom.sun.lwuit.Form;
  11. importcom.sun.lwuit.List;
  12. importcom.sun.lwuit.events.ActionEvent;
  13. importcom.sun.lwuit.events.ActionListener;
  14. importcom.sun.lwuit.layouts.BorderLayout;
  15. importcom.sun.lwuit.list.DefaultListModel;
  16. /**
  17. *本例演示如何使用List控件
  18. */
  19. publicclassListDemoimplementsActionListener{
  20. publicFormform=newForm("ListDemo");
  21. privateCommandbackCommand=newCommand("Back",1);
  22. privateString[]str_list={
  23. "aaaaaaaaaaaa",
  24. "bbbbbbbbbbbb",
  25. "ccccccccccccc",
  26. "ddddddddddddd"
  27. };
  28. ListDemo(){
  29. form.setLayout(newBorderLayout());
  30. form.addCommand(backCommand);
  31. form.setScrollable(true);
  32. //列表控件,尽管列表控件占用不少面积,但实际上跟普通的Componet一样
  33. DefaultListModelmyListModel=newDefaultListModel(str_list);
  34. Listlist=newList(myListModel);
  35. list.getStyle().setBgTransparency(100);
  36. //按钮控件
  37. Buttonbutton=newButton("test");
  38. form.addComponent(BorderLayout.CENTER,list);
  39. form.addComponent(BorderLayout.NORTH,button);
  40. list.addActionListener(this);
  41. form.setCommandListener(this);
  42. }
  43. publicvoidactionPerformed(ActionEventarg0){
  44. try{//处理列表事件
  45. Stringstr=((List)(arg0.getSource())).getSelectedItem().toString();
  46. Dialog.show("ListDemo",str,"OK",null);
  47. }catch(Exceptione)//处理COMMAND事件
  48. {
  49. Commandcommand=arg0.getCommand();
  50. if(command==backCommand)
  51. UIDemoMIDlet.backToMainMenu();
  52. }
  53. }
  54. }

你可能感兴趣的:(.net,Blog,sun)