开发者

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

开发者 https://www.devze.com 2023-01-12 02:57 出处:网络
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

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);
      开发者_运维百科      }


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();


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);

My answer is based on this other answer, I just modified it to use parameters.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号