I am very new to j2me. I have developed a basic SMS Banking app. My app works in most phones which are touch and non touch devices (Samsung duos, Monte, Nokia 6120c …, Sony Ericson w300). But when I installed it in a Samsung SGH-D980 it installs and starts fine. But the list element which is the first screen after my loading splash screen does not respond to the touch. I have developed the app using Net beans 7.0.1 and uses CLDC 1.0 and MIDP 2.0. I have tried the defaultfxtouchphone emulator and works fine on it too. My problem is why does it work on some touch phones but not in the above mentioned touch phone. thank you,
Midlet doesnt respond to touch in older touch screen phone
528 views Asked by Kanishka At
1
There are 1 answers
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
Related Questions in MIDP
- Help with JavaME Function
- Debugging in JavaMe (Midlet or JAD)
- J2ME text encryption - javax.crypto.IllegalBlockSizeException
- Find application mode, is it idle or not, in Java ME
- Are there any MIDP 3.0 based devices?
- Selected lIstener on javax.microedition.lcdui.CustomItem (MIDP)
- Is it possible to add malayalam font in Midlet programming?
- JavaMe MIDlet and Canvas
- HttpConnection - javax.microedition, returning -1 for getLength() method
- Print exception stack trace in JavaME, for the Samsung JET
Related Questions in TOUCHSCREEN
- Android touch screen power consumption
- Recording the time of the start of a screen touch in PsychoPy on Windows
- Using GetSystemMetrics how to determine if a screen is touchscreen
- Mousedown or touchstart called?
- input_report_abs axis offset
- Touch Screen event for tiny2451->S3c2451 ARM9 core
- WEC7 project (Platform Builder): touch screen display drivers issue
- How to determine if a device is touchscreen in Lotus Script in Registry
- mousemove based scrolling script need to adapt for touchscreen use
- Adb shell from application
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
Related Questions in SAMSUNG-MOBILE
- Samsung Galaxy S5 speakerphone\microphone issue
- Capture keys typed on android virtual keyboard using javascript
- Broadcast Receiver not registering in Samsung
- how to access string sent from wearable tizen app to android app
- Android MediaPlayer playing sound ok on virtual device and on tablet, but intermittently on smartphone galaxy s iii mini
- Android and Samsung S5 with Telephony.SECRET_CODE
- Android Sensor.TYPE_LINEAR_ACCELERATION reporting wrong values on Galaxy S5
- Can't call void android.view.View.setTranslationZ(float) on null object
- Call screenrecord within android app on samsung device not working
- Get Samsung warranty bit programmatically
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?
Popular Tags
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)
The fact that touch events are available to MIDlet at any other phones means nothing in your case.
MIDP specification (JSR 118) does not force implementation to make touch (pointer) events available to MIDlets even for touch device. According to data provided at club-java page, this is exactly the case for SGH-D980:
As soon as device allows to work with your list in non-touch fashion (you wrote nothing that says it ain't so), there is no problem - you just have to live with that.