android 在fragment中怎么监听返回键,home键
android 在fragment中如何监听返回键,home键
在activity中用keydown很容易实现对返回键的监听,但是这个函数不能再fragment中重载。
通过我呕心沥血的寻找,终于找到了解决办法,对其他物理按键的监听也同理。
在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; } }; }