Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Text MIDlet Example 
 

With the help of text midlet example, we are going to show text using canvas class at different locations on the screen. Given are the methods, that are used in the example...

 

Text MIDlet Example

                         

With the help of text midlet example, we are going to show text using canvas class at different locations on the screen. Given are the methods, that are used in the example... 

  • int width = getWidth();         
  • int height = getHeight();        
  • g.setColor(255, 162, 117);         
  • g.fillRect(0, 0, width, height);               
  • g.setColor(0, 0, 255);         
  • g.drawString("Sandeep Kumar Suman", 0, 0, Graphics.TOP | Graphics.LEFT);            
  • Font font = g.getFont();         
  • g.drawString("Master of Computer Application(2008)", 0, font.getHeight(), Graphics.TOP | Graphics.LEFT);            
  • g.drawString("Mobile No: +919313985248", width, height, Graphics.BOTTOM | Graphics.RIGHT);            
  • String str = "Roseindia Tech. Pvt. Ltd.";                 
  • font = Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_UNDERLINED, Font.SIZE_LARGE);         
  • g.setFont(font);         
  • g.drawString(str, 0, height/2, Graphics.LEFT | Graphics.BASELINE);          
  • int x = font.stringWidth(str);         
  • g.setColor(0, 0, 255);         
  • g.setFont(Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD | Font.STYLE_ITALIC, Font.SIZE_MEDIUM));
  • g.drawString(" Delhi, India", x, height/2, Graphics.LEFT | Graphics.BASELINE);

The Application is as follows:

 

Source Code of TextExample.java

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

public class TextExample extends MIDlet{
  private Display display;

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

  public void pauseApp(){}

  public void destroyApp(boolean unconditional){}
}

class TextCanvas extends Canvas {
    public void paint(Graphics g) {
        int width = getWidth();
        int height = getHeight();

        g.setColor(255162117);
        g.fillRect(00, width, height);
        
        g.setColor(00255);
        g.drawString("Sandeep Kumar Suman"00, Graphics.TOP | 
        Graphics.LEFT);

        
        Font font = g.getFont();
        g.drawString("Master of Computer Application(2008)"0
        font.getHeight(), Graphics.TOP | Graphics.LEFT);

        
        g.drawString("Mobile No: +919313985248", width, height, 
                Graphics.BOTTOM | Graphics.RIGHT);
        
        String str = "Roseindia Tech. Pvt. Ltd.";        
        font = Font.getFont(Font.FACE_PROPORTIONAL, 
        Font.STYLE_UNDERLINED, Font.SIZE_LARGE);

        g.setFont(font);
        g.drawString(str, 0, height/2, Graphics.LEFT | Graphics.BASELINE);
     
        int x = font.stringWidth(str);
        g.setColor(00255);
        g.setFont(Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD | 
        Font.STYLE_ITALIC, Font.SIZE_MEDIUM));

        g.drawString(" Delhi, India", x, height/2, Graphics.LEFT | 
        Graphics.BASELINE);

    }
}

Download Source Code

                         

» View all related tutorials
Related Tags: c file list table time hash mobile object map screen hashtable maps display key value this id keys oo wav

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.