Namespaces
Variants
Actions

Gauge in Java ME (Português)

Jump to: navigation, search
Dados do artigo

Compatibilidade
Plataforma(s): Java ME

Artigo
Tradução:
Originado de Gauge
Última alteração feita por lpvalente em 07 Feb 2012

Este artigo mostra como criar um Form com um Gauge.

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
 
public class Gauge_ex extends MIDlet
{
Display display=Display.getDisplay(this);
 
public void startApp()
{
Form form = new Form("Gauge example");
//Gauge(label,interaction,maxValue,InitialValue)
Gauge gauge = new Gauge("Gauge example", false, 20, 4);
form.append(gauge);
display.setCurrent(form);
}
}

O resultado é o seguinte screenshot.

Gauge.png

This page was last modified on 7 February 2012, at 21:45.
82 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved