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

J2ME

开发平台:

Java

  1. /*
  2.  * MOMNewsCenterTabPane.java
  3.  *
  4.  * Created on April 22, 2010, 3:15 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.ScrollableContainer;
  15. import com.framework.TickerTextControl;
  16. /**
  17.  *
  18.  * @author Tejaswi
  19.  */
  20. public class NewsCenterTabPane extends MOMTabPane{
  21.     
  22.     /** Creates a new instance of MOMNewsCenterTabPane */
  23.     public NewsCenterTabPane() {
  24.     }
  25.     
  26.      public void init() {
  27.         tabButton = MOMUiFactory.getCommanTabButton(Constants.NEWS_CENTER_STRING);
  28.         tabBody = new ScrollableContainer();
  29.         
  30.         tabBody = new ScrollableContainer();
  31.         tabBody.setLayout(Constants.LIST_LAYOUT_01);
  32.         for (int i = 0; i < 10; i++) {
  33.             TickerTextControl control = new TickerTextControl("News control: " + (i + 1) , Resources.getInstance().getFontBlackMediumBold() );
  34.             control.setSelectionBgColor(0xff0000);
  35.             tabBody.addChildren(control);
  36.         }
  37.     }
  38. }