Open GoogleCodeExporter opened 8 years ago
the developers of the keyboard say:
>we have developed the android driver as much as we can to try and cover most
programs.
>you will have to speak with the app developer to see what he can do.
>Jon Brook
>Technical Assistant
>Freedom Input
so i hope to get support from you guys !
PLEASE!!! ;)
Original comment by michael....@gmail.com
on 4 Oct 2010 at 2:42
I am in, I need desperately CTRL key on android, when using ConnectBot
Original comment by opensubt...@gmail.com
on 7 Oct 2010 at 5:29
[deleted comment]
There is someone that made a patch for the Toshiba AC100 keyboard. I'd be
interested to know if that patch works for this keyboard:
http://github.com/kruton/connectbot/pull/3
Original comment by kenny@the-b.org
on 9 Oct 2010 at 6:05
sorry, i sold my keyboard - the guys from the freedom support showed me, that
they are not really interested in their customers... dear android user: DON`T
BUY THIS KEYBOARD !!!
Original comment by michael....@gmail.com
on 11 Oct 2010 at 11:47
1- I contacted Freedom, and got a positive "Let me talk to with the engineers"
and "I know the author of connectbot was looking into some compatibility issues
with the keyboard and I have offered him a keyboard and assistance but
haven't had any response as yet."
2- looks like enabling TAB should be trivial, by diff'ing the T-AC100 patch
Original comment by SKorzen...@gmail.com
on 22 Oct 2010 at 8:46
add this to TerminalKeyListener.java
case KeyEvent.KEYCODE_TAB:
metaState &= ~(META_TAB | META_TRANSIENT);
bridge.transport.write(0x09);
return true;
pretty logical hehe gonna work on CTRL and Fx now
okay driver isnt sending ctrl key properly to app, so i modified Alt to
Control, i dont need alt at all atm, here stuff
before method onKey add
private boolean altPressed = false;
private boolean winPressed = false;
private boolean rshiftPressed = false;
inside onKey add
final boolean up = event.getAction() == KeyEvent.ACTION_UP ? true : false;
final boolean down = event.getAction() == KeyEvent.ACTION_DOWN ? true : false;
//alt down
if (keyCode == KeyEvent.KEYCODE_ALT_LEFT && down) {
altPressed = true;
return false;
}
//alt up
if (keyCode == KeyEvent.KEYCODE_ALT_LEFT && up) {
altPressed = false;
return false;
}
inside onKey after if (printing) {
add
if (altPressed) metaPress( META_CTRL_ON );
working for me as control
made Fx keys and so on myself too can post if interested
Original comment by stafu...@gmail.com
on 25 Oct 2010 at 5:37
Original issue reported on code.google.com by
michael....@gmail.com
on 30 Sep 2010 at 10:41