Soft Copy

  • Uploaded by: young
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Soft Copy as PDF for free.

More details

  • Words: 1,092
  • Pages: 25
› 

Nokia 1110 Cell Phone Review If you are looking for a GSM cell phone with simple yet slightly distinct features, then the Nokia 1110 unlocked GSM cellular phone is for you. The body design, inversion screen which features amber backlighting, and simplified menu navigation are its key features. The Nokia 1110 cell phone also comes equipped with 20-chord polyphonic tones and mP3-grade sound tones that are very noticeable. The phone has a candy bar shape with smooth corners and has uniquely shaped silicon buttons on the keypad. The Nokia 110 cell phone is not huge at all with dimensions of 104 x 44 x 17mm and comes with interchangeable Xpress-on color covers.

These Nokia mobile phones are low-end models; however they are quite different from other GSM mobile phones in its class. The Nokia 1110 has a loudspeaker gap placed on the side and another one found on the top, this allows carrying the device without a fair of missing a call. The Nokia 1110 comes with a Litium-Ion cell phone battery which delivers enough power to provide 5.2 hours of talk time and a standby time of 380 hours. The most unique features of this unlocked mobile phone are its speaking alarm and clock, which makes for convenient timekeeping. Although the front panel features a small monochrome inversion screen (black and white display with amber characters), it is still very much visible in the sun.

besides looks and other features, the Nokia 1110 4way scroll allows you to makes it very has excellent icon-based menu navigation. Its exceptional easy and convenient to browse through menus and enjoy the full functions of the mobile phone. The simplified icon menu with intuitive navigation and a 4-way scroll allow you to enjoy the full functions of your mobile phone faster and easier. The demo mode lets you experience the phone's features at a glance. The new inverted black and white display and polyphonic ringing tones will make you stand out from the crowd. Now, everyone can enjoy the art of simplicity with the new Nokia 1110 phone.

¤ ¤ ¤ ¤ ¤

¤ ¤ ¤ ¤ ¤ ¤ ¤ ¤ ¤ ¤ ¤

Speaking alarm and clock Icon-based phonebook with simplified menu navigation 20-chordS polyphonic ringtones with MP3-grade sound or non-inverted black and white display) Graphical New inverted black and white display with amber backlight (the 1110i has a regular demo mode for phone features both with and without SIM card Analog clock display Call management (timers, counters) Internal antenna Exchangeable Xpress-on color covers Picture messaging to send a picture greeting Three built-in games Four-way scroll key Easy deletion of multiple messages Undo item in SMS editor 5 hrs battery talk time The new SNAKE XENZIA game

Messages: Create message, Inbox, Sent items, Drafts Chat, Picture messages, Distribution lists, Screened messages. Message counter, Message settings, Service Command Editor



Contacts : Search, Add Contact, Delete, Copy, Settings Speed dial, No. Screening.



Call register: Missed calls, received calls, Dialed numbers Delete recent call lists, Call duration, Message counter.



Settings: Tone settings, Display settings, Profiles, Time settings, call settings Phone settings, Cost settings, Enhancement settings, Security settings, Right selection key settings, Restore factory settings.



Clock: Alarm time, Alarm tone, Repeat alarm, Speaking clock, Time settings.



Reminders: Add new, View all, Delete, alarm tone.



Games: Pocket Carrom, Snake, Settings.



Extras: Calculator, Converter, Counted time, Stopwatch, Composer, Chinese Lunar Calendar, Demo.



Ž  

Ž   

Ž  Ž

  Ž

import java.io.*; import javax.microedition.lcdui.*; import javax.microedition.midlet.*; public class mymenu extends MIDlet implements CommandListener { private List mymenu, msgsmenu, conmenu, callregmenu, setmenu, clomenu, remindersmenu, games, exmenu; private Command exit, next, back;

private Command exit, next, back; private String[] mymenuElements = { "Messages","Contacts","Call Register","Settings","Clock","Reminders","Games","Extr as"}; private Image[] image = {loadImage("/MESSAGES.jpg"),loadImage("/CONTACTS.j pg"),loadImage("/CALLREGISTER.jpg"),loadImage("/SET TING.jpg"),loadImage("/CLOCK.jpg"),loadImage("/REMIN DERS.jpg"),loadImage("/GAMES.jpg"),loadImage("/EXTR AS.jpg")};

private Alert alert; public mymenu() { String[] msgs = {"Create Message", "Inbox", "Sent Items", "Drafts", "Chat", "Picture Messages","Distribution Lists", "Screened Messages", "Delete Messages", "Message Counter", "Message Settings", "Service Command Editor" }; String[] contacts = {"Search", "Add Contact", "Delete", "Copy", "Settings","Speed Dial", "No.Screening"}; String[] call = {"Missed Calls", "Received Calls", "Dialled Numbers", "Delete Recent Call Lists", "Call Duration","Message Counter"}; String[] settings = {"Tone Settings", "Display Settings", "Profiles", "Time Settings", "Call Settings", "Phone Settings",

"Cost Settings", "Enhancement Settings", "Security Setting", "Right Selection Key Settings", "Restore Factory Settings"}; String[] alarmclock = {"Alarm Time", "Alarm Tone", "Repeat Alarm", "Speaking Clock", "Time Settings"}; String[] reminders = {"Add New", "View All", "Delete", "Alarm Tone"}; String[] gamesmenu = {"Pocket Carrom", "Snake", "Settings"}; String[] extras = {"Calculator", "Converter", "Countdown Timer", "Stopwatch", "Composer", "Chinese Lunar Calendar", "Demo"}; ¤

msgsmenu = new List("Messages", List.IMPLICIT, msgs,null); conmenu = new List("Contacts", List.IMPLICIT, contacts, null); callregmenu = new List("Call Register", List.IMPLICIT, call, null); setmenu = new List("Settings", List.IMPLICIT, settings, null); clomenu = new List("Alarm Clock", List.IMPLICIT, alarmclock, null); remindersmenu = new List("Reminders", List.IMPLICIT, reminders, null); games = new List("Games", List.IMPLICIT, gamesmenu, null); exmenu = new List("Extras", List.IMPLICIT, extras, null); mymenu = new List("mymenu",List.IMPLICIT,mymenuElements,image);

next = new Command("Next", Command.OK, 0); exit = new Command("Exit", Command.EXIT, 0); back = new Command("back", Command.bACK, 0); msgsmenu.addCommand(back); msgsmenu.addCommand(next); msgsmenu.setCommandListener(this); conmenu.addCommand(back); conmenu.addCommand(next); conmenu.setCommandListener(this);

callregmenu.addCommand(back); callregmenu.addCommand(next); callregmenu.setCommandListener(this); setmenu.addCommand(back); setmenu.addCommand(next); setmenu.setCommandListener(this); clomenu.addCommand(back); clomenu.addCommand(next); clomenu.setCommandListener(this); remindersmenu.addCommand(back); remindersmenu.addCommand(next); remindersmenu.setCommandListener(this);

games.addCommand(back); games.addCommand(next); games.setCommandListener(this); exmenu.addCommand(back); exmenu.addCommand(next); exmenu.setCommandListener(this); mymenu.addCommand(next); mymenu.addCommand(exit); mymenu.setCommandListener(this); } public void startApp() { Display.getDisplay(this).setCurrent(mymenu); }

public void commandAction(Command c, Displayable s) { if(/*c==next || */c == List.SELECT_COMMAND) { if(mymenu.getSelectedIndex()==0) { Display.getDisplay(this).setCurrent(msgsmenu); if(msgsmenu.isShown()) { int index = msgsmenu.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + msgsmenu.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); } } else if(mymenu.getSelectedIndex()==1) {

Display.getDisplay(this).setCurrent(setmenu); if(setmenu.isShown()) { int index = setmenu.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + setmenu.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); } } else if(mymenu.getSelectedIndex()==4) { Display.getDisplay(this).setCurrent(clomenu); if(clomenu.isShown()) { int index = clomenu.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + clomenu.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); }

} else if(mymenu.getSelectedIndex()==5) { Display.getDisplay(this).setCurrent(remindersmenu); if(remindersmenu.isShown()) { int index = remindersmenu.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + remindersmenu.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); } } else if(mymenu.getSelectedIndex()==6) {

Display.getDisplay(this).setCurrent(games); if(games.isShown()) { int index = games.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + games.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); } } else if(mymenu.getSelectedIndex()==7) { Display.getDisplay(this).setCurrent(exmenu); if(exmenu.isShown()) { int index = exmenu.getSelectedIndex(); Alert alert = new Alert("Your Selection", "You choose: " + exmenu.getString(index), null, AlertType.ALARM); Display.getDisplay(this).setCurrent(alert); } }

} else if(c==exit) notifyDestroyed(); else if(c==back) Display.getDisplay(this).setCurrent(mymenu); } public void pauseApp() { } public void destroyApp(boolean unconditional) { }

private Image loadImage(String name) { Image image = null; try { image = Image.createImage(name); } catch(IOException ioe) { System.out.println(ioe); } return image; } }



Related Documents

Soft Copy
June 2020 21
Bioinfo Soft Copy
June 2020 8
Physics Project Soft Copy
November 2019 9

More Documents from ""

Hard Copy
June 2020 25
Soft Copy
June 2020 21
Source Code
June 2020 19
Pompeii
August 2019 8