Jump to content
Fórum Script Brasil
  • 0

Problema Ticker J2ME


Renata Maurer

Question

Oi Pessoal!

Eu sou Renata e estou começando no mundo JAVA!

A minha dúvida é sobre TICKER. O comportamento normal dele é rolar o texto na parte superior da tela, porém em todas as plataformas que simulo, o texto rola na parte inferior da tela. Alguém sabe como poderei configurar para que o texto role na parte superior?

Estou usando NetBeans 7.0.1 e JDK 7

Obrigada!

Abaixo o código-fonte:

import javax.microedition.midlet.MIDlet;  
    import javax.microedition.lcdui.*;  
    public class exemplo1 extends MIDlet {  
          
        public Display display;  
        public Form frmCadastro;  
        public Ticker ticker;  
      
        public void startApp() {  
      
            display = Display.getDisplay(this);  
      
            frmCadastro = new Form("Minha agenda");  
                   
            ticker = new Ticker("Segundo Teste!");  
              
         
            frmCadastro.setTicker(ticker);  
              
            display.setCurrent(frmCadastro);   
                       
        }  
        public void pauseApp() {  
              
        }  
        public void destroyApp(boolean unconditional){  
              
        }  
    }

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...