之前,当我将鼠标悬停在 FragmentActivity 上时,我会得到“注意:这个元素既没有附加源也没有附加 Javadoc,因此找不到 Javadoc。” 我去了我的包中 android-support-v4.jar 的位置并导入了源代码和 javadoc 并摆脱了它,但是当我尝试使用它或覆盖它时,eclipse 仍然找不到超类中的方法。
@Override
protected void onResumeFragments() {
super.onResumeFragments();
Session session = Session.getActiveSession();
if (session != null && session.isOpened()) {
// if the session is already open,
// try to show the selection fragment
showFragment(SELECTION, false);
} else {
// otherwise present the splash screen
// and ask the person to login.
showFragment(SPLASH, false);
}
}