Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Copyright (c) 2012 [iPs]TeaM
- * Bruno da Silva (email@brunodasilva.com)
- * Adicionar imagem em j2me.
- *
- * www.brunodasilva.com
- * www.ips-team.forumeiros.com
- */
- // Primeiramente declare as variáveis
- private Form mainForm;
- private Image telaInicial;
- // Então adicione o código para criar a imagem
- mainForm = new Form("Formulário");
- try {
- telaInicial = Image.createImage("/tela.png");
- Item mItem = new ImageItem(null, telaInicial, 0, null);
- mainForm.append(telaInicial);
- display.setCurrent(mainForm);
- }
- catch(Exception e){
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement