stb 缩写 java,Java KeyEvent.KEYCODE_STB_INPUT属性代码示例

/**

* This should be called from the Activity's dispatchKeyEvent() to handle keyboard shortcuts.

*

* Note: dispatchKeyEvent() is called before the active view or web page gets a chance to handle

* the key event. So the keys handled here cannot be overridden by any view or web page.

*

* @param event The KeyEvent to handle.

* @param activity The ChromeActivity in which the key was pressed.

* @param uiInitialized Whether the UI has been initialized. If this is false, most keys will

* not be handled.

* @return True if the event was handled. False if the event was ignored. Null if the event

* should be handled by the activity's parent class.

*/

@SuppressFBWarnings("NP_BOOLEAN_RETURN_NULL")

public static Boolean dispatchKeyEvent(KeyEvent event, ChromeActivity activity,

boolean uiInitialized) {

int keyCode = event.getKeyCode();

if (!uiInitialized) {

if (keyCode == KeyEvent.KEYCODE_SEARCH || keyCode == KeyEvent.KEYCODE_MENU) return true;

return null;

}

switch (keyCode) {

case KeyEvent.KEYCODE_SEARCH:

if (event.getAction() == KeyEvent.ACTION_DOWN && event.getRepeatCount() == 0) {

activity.onMenuOrKeyboardAction(R.id.focus_url_bar, false);

}

// Always consume the SEARCH key events to prevent android from showing

// the default app search UI, which locks up Chrome.

return true;

case KeyEvent.KEYCODE_MENU:

if (event.getAction() == KeyEvent.ACTION_DOWN && event.getRepeatCount() == 0) {

activity.onMenuOrKeyboardAction(R.id.show_menu, false);

}

return true;

case KeyEvent.KEYCODE_ESCAPE:

if (event.getAction() == KeyEvent.ACTION_DOWN && event.getRepeatCount() == 0) {

if (activity.exitFullscreenIfShowing()) return true;

}

break;

case KeyEvent.KEYCODE_TV:

case KeyEvent.KEYCODE_GUIDE:

case KeyEvent.KEYCODE_DVR:

case KeyEvent.KEYCODE_AVR_INPUT:

case KeyEvent.KEYCODE_AVR_POWER:

case KeyEvent.KEYCODE_STB_INPUT:

case KeyEvent.KEYCODE_STB_POWER:

case KeyEvent.KEYCODE_TV_INPUT:

case KeyEvent.KEYCODE_TV_POWER:

case KeyEvent.KEYCODE_WINDOW:

// Do not consume the AV device-related keys so that the system will take

// an appropriate action, such as switching to TV mode.

return false;

}

return null;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值