我正在开发一个使用 fragment 的应用程序,这是我的问题。

1.在旧版本的android中,我们可以覆盖 Activity 中的onSearchRequested()方法。

2.但是在 fragment 中我们不能覆盖onSearchRequested()的地方,如何在 fragment 中实现这个方法。

谢谢,
尼基雷迪。

最佳答案

试试 getActivity().onSearchRequested();

10-08 15:21