MarketTabPane.java
上传用户:luxiaowei
上传日期:2022-06-06
资源大小:58k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /*
  2.  * MOMMarketTabPane.java
  3.  *
  4.  * Created on April 22, 2010, 1:43 PM
  5.  *
  6.  * To change this template, choose Tools | Template Manager
  7.  * and open the template in the editor.
  8.  */
  9. package com.MOM.ui.design;
  10. import com.MOM.ui.control.*;
  11. import com.MOM.Constants;
  12. import com.MOM.resources.Resources;
  13. import com.MOM.ui.MOMUiFactory;
  14. import com.framework.ListLayout;
  15. import com.framework.ScrollableContainer;
  16. import com.framework.TickerTextControl;
  17. import javax.microedition.lcdui.Graphics;
  18. /**
  19.  *
  20.  * @author Tejaswi
  21.  */
  22. public class MarketTabPane extends MOMTabPane{
  23.     
  24.     /** Creates a new instance of MOMMarketTabPane */
  25.     public MarketTabPane() {
  26.     }
  27.     public void init() {
  28.         tabButton = MOMUiFactory.getCommanTabButton(Constants.MARKET_STRING);
  29.         tabBody = new ScrollableContainer();
  30.         tabBody.setLayout(Constants.LIST_LAYOUT_01);
  31.         for (int i = 0; i < 10; i++) {
  32.             TickerTextControl control = new TickerTextControl("Market control: " + (i + 1) , Resources.getInstance().getFontBlackMediumBold() );
  33.             control.setSelectionBgColor(0xff0000);
  34.             tabBody.addChildren(control);
  35.         }
  36.     }
  37. }