Tagged Questions

6
votes
3answers
3k views

Are the 4 Android buttons standard? Ex. back button, menu button

Are the physical buttons that Android phones come with standard? Specifically the back, menu, home, and search button? In my applications I assume everyone has a back button so I don't bother putting ...
4
votes
1answer
491 views

Facebook Authentication working on Emulator, But not on physical device

Hey everyone just recently developed my first android app that logs into facebook and tries to status update Without the dialog box, using the graph API. The code below is the authorization code ...
4
votes
2answers
3k views

Detecting physical Menu key press in Android

I am trying to detect when the physical Menu button on my Android phone has been pressed. I though the code below would work but it does not. Where am I going wrong please? The error returned is ...
1
vote
0answers
260 views

Physical Keyboard event for android?

Hey, this is the code for a bash script that i've made #!/system/bin/sh # # Keyboard Fix # SD_EXT_DIRECTORY=/sd-ext dev=/sys/devices/platform/msm_pmic_misc_led.0 a=`cat $SD_EXT_DIRECTORY/key.log` if ...
1
vote
2answers
307 views

Android: How to prevent opening physical keyboard restarting app

I have my android:screenOrientation="portait" on but when a physical keyboard is opened it doesn't rotate the screen as I wanted, but it restarts the app. It seems to run onCreate over again or ...
0
votes
0answers
665 views

Android - handle virtual & physical keyboard events

After reading answers to several similar questions* I did realize that onKeyListener() does not get key press events from a soft (virtual) keyboard. It gets them only from a hard (physical) keyboard. ...
0
votes
1answer
434 views

How to remap physical keyboard, or to change Android OS to another language

Hello all I have a Desire Z Android 2.2 English with psysical keyboard. I need to have three local characters on the physical keyboard. I can certainly access them via longpress and choose on touch ...