在我的应用程序中,我将SherlockFragment用于Sidenavigation 菜单以及Tab 片段。
在这里,我得到了在内部使用 OnNewIntent函数的位置SherlockFragment
。但它返回一个错误,如"The method onNewIntent(Intent) of type classname must override or implement a supertype method"
.
代码:
public class MyClass extends SherlockFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Get the view from Twitter.xml
View view = inflater.inflate(R.layout.activity, container, false);
return view;
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
}
}
那么有人可以建议我如何解决这个问题吗?