Android: Help creating a button that produces the same result as hitting the down key on the D-Pad? (part 2)

StackOverflow https://stackoverflow.com/questions/3526339

  •  29-09-2019
  •  | 
  •  

Question

Why doesn't this work?? I am trying to create an onClickListener for a button that produces the same effect as pressing the "down" key on the D-pad. Eclipse gives me an error, saying: "Cannot make a static reference to the non-static method sendDownUpKeyEvents(int) from the type InputMethodService" Help!

downButton.setOnClickListener(new View.OnClickListener() {

            public void onClick(View view) {

                InputMethodService.sendDownUpKeyEvents(0x00000014);
            }
Was it helpful?

Solution

You're trying to invoke non-static method in a static way. You need to obtain an instance of the service first and then invoke the method on the instance. Also the way you're doing the simulation of keypress looks incorrect. UPD: After some digging I've managed to simulate key event, try:

new Thread(new Runnable() {         
    @Override
    public void run() {                 
        new Instrumentation().sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
    }   
}).start();

OTHER TIPS

Same solution, just will take a parameter.

private void InjectKeys(final int keyEventCode) {
 new Thread(new Runnable() {
  @Override
  public void run() {
   new Instrumentation().sendKeyDownUpSync(keyEventCode);
  }
 }).start();
}

Just call and pass the KeyEvent.KEYCODE like so InjectKeys(KeyEvent.KEYCODE_DPAD_DOWN);

Please don't downvote or upvote me, my answer is exactly like the above answer, I just modified it to use parameters.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top