之前,当我在FragmentActivity上盘旋时,我会得到“注意:这个元素既没有附加源也没有附加Javadoc,因此找不到Javadoc。”我去了我的包中的android-support-v4.jar的位置并导入了源和javadoc并且摆脱了它,但当我尝试使用它或覆盖它时,eclipse仍然无法在超类中找到该方法。 / p>
@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);
}
}