Android小技巧 - Fragment监听返回键

这是Android小技巧系列的第一篇,以后会记录一些项目中使用的小技巧。

  • 使用场景
    在一个Fragment中按下返回键,先判断下PopupWindow是否显示,若显示,隐藏PopupWindow,否则,执行系统的返回事件。

  • 代码示例

@Override
public void onResume() {
    super.onResume();
    getView().setFocusableInTouchMode(true);
    getView().requestFocus();
    getView().setOnKeyListener(new View.OnKeyListener() {
        @Override
        public boolean onKey(View v, int keyCode, KeyEvent event) {
            if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
                if (popupWindow != null && popupWindow.isShowing()) {
                    popupWindow.dismiss();
                    return true;
                }
            }
            return false;
        }
    });
}
  • 说明
    其中的getView()是获取onCreateView创建的父View,监听View的按键事件来监听返回键,这才是最最有才的办法,哈哈!

  • 参考:http://stackoverflow.com/questions/22552958/handling-back-press-when-using-fragments-in-android

你可能感兴趣的:(android,小技巧)