Home J2me J2ME Draw String



J2ME Draw String
Posted on: December 12, 2008 at 12:00 AM
In the previous examples, we learned about drawing different graphics on the screen. Here in this example, we are going to show the string in J2ME.

J2ME Draw String

     

In the previous examples, we learned about drawing different graphics on the screen. Here in this example, we are going to show the string in J2ME. For that we have created a a class called GraphicsCanvas class that extends to the Canvas class to draw the string.

Given methods are used to set the actual layout of the text on the screen.

  • setColor()
  • fillRect()
  • drawString()
  • getHeight()
  • getWidth()

  g.TOP will show the string on Top and g.LEFT set it in the left alignment. The drawString() method is used to show the string on the screen.

 

The Application is as follows:

Simple Graphic

Source Code of SimpleGraphics.java

 

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

public class SimpleGraphics extends MIDlet{
  private Display display;

  public SimpleGraphics(){}

  public void startApp(){
  Canvas canvas = new GraphicsCanvas();
  display = Display.getDisplay(this);
  display.setCurrent(canvas);
  }

  public void pauseApp(){}

  public void destroyApp(boolean unconditional){}
}
class GraphicsCanvas extends Canvas{
  public void paint(Graphics g){
  int x = 0, y = 0;
  g.setColor(255162117);
  g.fillRect(00, getWidth(), getHeight());
  g.setColor(00255);
  g.drawString("Sandeep Kumar Suman", x, y, g.TOP | g.LEFT);
  }
}

 

Download Source Code

Related Tags for J2ME Draw String:
cstringgraphicsj2mediffiodrawinggraphscreenexamplesvithisshowifexampletodrawlearnexamrawsheareicsincsdifferentmntouttrjesmehowxaxampseeismplpregographiceaarstrwingscrssriringrenthshostabapfepleplprono


More Tutorials from this section

Ask Questions?    Discuss: J2ME Draw String   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.