I am new to j2me. I am developing a mobile application in j2me. Is there a way of adding a canvas object to the background of a form? I tried searching in net with few people suggesting to use "jmepolish". I have no idea what jmepolish is..Is there a way to do this with normal j2me classes?
how to add canvas to the background of a form in j2me
896 Views Asked by Harish Pendela At
1
There are 1 best solutions below
Related Questions in JAVA-ME
- J2ME chat application not connecting
- Does j2me support SHA-2 for signing an Android Application?
- Nokia Asha SDK files
- Date Issue in J2ME
- How to configure proguard in Eclipse Me for generating jar(FFI) file for j2me
- Provide our j2me app with expired certificate
- How to resolve javax.microedition.io.connectionnotfoundexception: connectionnotfound error in socket::open : error = 10061
- multiple j2me commandAction methods in different classes not responding
- Java ME: transform basic JDK 1.5 "enum" object into Java ME CLDC-1.1/IMP-NG (JDK 1.4)
- JAVA Inner class Variable access
- landscape j2me game with WTK emulator
- How to access the multiple choiceGroup in midlet class as selection
- Third soft button for LWUIT/Codenameone?
- android Dx warning: Ignoring InnerClasses attribute for an anonymous inner class jar file issue
- Stop playing music
Related Questions in LCDUI
- Netbeans 8.0.1 package javax.microedition.lcdui.* does not exist
- Cocoa: iTunes and XCode 4 style LCD displays
- JavaMe MIDlet and Canvas
- Draw string on the center of the header image
- How to Change the LCDUI form size in J2Me?
- Desigining a Form in j2me
- How to draw large image in canvas and move upon key event
- Desigining a Form in j2me
- How to get the size of sprite in a sprite "Sheet"?
- how to use defineCollisionRectangle?
- Basic query about what's going on with the stack in a Java ME app
- how to disable navigation keys in j2me?
- How to get from Canvas back to MIDlet
- How do I add button in J2ME?
- How to implement more than one Images in form and new Date instances
Related Questions in MIDP-2.0
- Selected lIstener on javax.microedition.lcdui.CustomItem (MIDP)
- SecurityException is raised when trying to use JSR-179
- Create Landscape Game Canvas for Asha 303
- What is the best way to achieve push on CLDC devices?
- Download images from server whenever it required in j2me
- Why isn't J2ME able to create recursive directory creation?
- MIDP 2.0 push registry
- Can a native Blackberry application (not MIDlet) use MIDP Push Registry?
- How to Create Screen Tabs in j2me (java)
- How to display multiple List screens in one screen in j2me (java)
- How to read multiple rss xml files in j2me
- How to develop Rss Reader App using LWUIT Component in j2me(java)
- How to Create Header on j2me(java) screen
- How to display Image on the List and Form Screens in j2me (java)
- How to create J2me(java)Project combining with J2me Polish
Related Questions in CLDC
- Equivalent (roughly) of setCurrent() in BlackBerry()
- How can I run javascript/rhino implementation on cldc?
- How to change the "Date" and "Time" of the mobile phone using "J2ME"?
- What is the best way to achieve push on CLDC devices?
- Using boolean var for stopping threads
- Trigonometry in CLDC 1.0 / MIDP 2.0 application
- Is Object.class.getName() Slow?
- Midlet doesnt respond to touch in older touch screen phone
- Commands sometimes don't work
- Alternatives for arbitrary-precision decimals in J2ME
- How to approach SRS
- "Undefined methods for the type "error after importing Netbeans project to Eclipse Pulsar
- How to force use of StringBuffer instead of StringBuilder by default in javac?
- Trying to write a hello world CLDC blackberry program
- MIDP 2.0 version issues: $method is undefined for $type
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No there's no way to do this. A J2ME form has very limited levels of customisation.
In order to make a fancy looking form that looks exactly as you want, you need to use the Canvas class; this involves doing everything else yourself, i.e. drawing your own input widgets, managing your own user interaction, including scrolling, and any touch screen/gesture stuff if your device supports it.
You can use libraries like J2ME Polish that will do that for you, but even then you will be constrained by what that library supports; and there is an overhead for including the library in your midlet.