在fragment中监听返回键,home键

android 在fragment中如何监听返回键,home键


摘自:http://www.myexception.cn/android/1739468.html

在activity中用keydown很容易实现对返回键的监听,但是这个函数不能再fragment中重载。
通过我呕心沥血的寻找,终于找到了解决办法,对其他物理按键的监听也同理。
public class phonerecorder extends Fragment {
    View listview;
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        listview = (View) inflater.inflate(R.layout.phonerecorder, null);
        mListView = (ListView) listview.findViewById(R.id.listView);
        init();
        mListView.setOnItemClickListener(clickitemlistener);
        listview.setFocusable(true);//这个和下面的这个命令必须要设置了,才能监听back事件。
        listview.setFocusableInTouchMode(true);
        listview.setOnKeyListener(backlistener);
        return listview;
    }
  private View.OnKeyListener backlistener = new View.OnKeyListener() {
        @Override
        public boolean onKey(View view, int i, KeyEvent keyEvent) {
            if (keyEvent.getAction() == KeyEvent.ACTION_DOWN) {
                if (i == KeyEvent.KEYCODE_BACK) {  //表示按返回键 时的操作
                    if (!rootpatch.equals(currentfilepach) && currentfilepach != null) {
                        File file = new File(currentfilepach);
                        openDir2(file.getParent().toString());
                        currentfilepach = file.getParent().toString();
                        return true;
                    } //后退
                    return false;    //已处理
                }
            }
            return false;
        }
    };
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值