Sixthhokage2 / remuco

Automatically exported from code.google.com/p/remuco
1 stars 1 forks source link

WM6 Xperia (J2ME): Next or Save button missing in Add WIFI screen #104

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What is your environment?
* OS: Ubuntu 10.4
* Remuco version: 0.9.2.1
* Client device: Sony XPeria WM6
* Player: n/a

What steps will reproduce the problem?
1. On phone start Remuco
2. Go to Add WIFI (e.g. Use down key: Select WIFI, Click 'middle' key)
3. Fill in IP address

What is the expected behavior? What happens instead?

I'd expect a 'Next' or 'Save' or 'Add' button. Only 'Back' button. Could 
not find key or on-screen keyboard key that confirms/saves.

Additional information:

Original issue reported on code.google.com by jptest...@gmail.com on 3 Jun 2010 at 8:18

GoogleCodeExporter commented 9 years ago
You should see and "Ok" button. Don't know why the XPeria does not show it. The 
"Ok" 
button is handled differently on different devices. On traditional phones it is 
mapped 
to one of the soft keys below the screen. Touchscreen devices usually emulate 
soft 
keys on the screen. Anyway, the button's type is 'OK' so it _should_ get mapped 
to 
some kind of 'OK' button on your phone, maybe there's a hardware button for 
that on 
your device?

Original comment by obensonne@googlemail.com on 4 Jun 2010 at 6:11

GoogleCodeExporter commented 9 years ago
have the same issue. try to sign other key's as ok button (also with other 
programs), but does now works. Could it be possible to find an additional 
button that can be used to save

Original comment by havdtor...@gmail.com on 30 Aug 2010 at 6:24

GoogleCodeExporter commented 9 years ago
Since this seems to be an issue specific to the XPeria, I cannot work on a fix 
myself. However, you can try to fix this on your own by building a customized 
client. General instructions for this can be found in the wiki page 
ClientCustomization.
Prepare the build environment as described there. Then, edit the file CMD.java, 
line 87 (see 
http://code.google.com/p/remuco/source/browse/client/midp/src/remuco/client/midp
/ui/CMD.java#87 ). Change it from

    public static final Command OK = new Command("Ok", Command.OK, 10);

to

    public static final Command OK = new Command("Ok", Command.SCREEN, 10);

Subsequent build the customized client as described in the wiki page.

Come back and report success/problems to let other users benefit from your work.

Original comment by obensonne@googlemail.com on 2 Oct 2010 at 8:34

GoogleCodeExporter commented 9 years ago
FYI: That didn't fix it...still no OK button.

I thought perhaps adding a 'addCommand(CMD.OK);' to WifiScreen.java would do 
the trick but that doesn't work either. (NOTE: Haven't looked into MIDP in a 
long time, and neither did I now)

Original comment by jptest...@gmail.com on 1 Dec 2010 at 9:32

GoogleCodeExporter commented 9 years ago
The command is added here: 
http://code.google.com/p/remuco/source/browse/client/midp/src/remuco/client/midp
/ui/screens/DeviceSelectorScreen.java#356 - I really have no idea why it does 
not show up on the XPeria, sorry.

Original comment by obensonne@googlemail.com on 8 Dec 2010 at 8:39

GoogleCodeExporter commented 9 years ago

Original comment by obensonne@googlemail.com on 8 Mar 2011 at 6:38

GoogleCodeExporter commented 9 years ago

Original comment by obensonne@googlemail.com on 31 Aug 2011 at 8:46