我正在开发一个应用程序,我必须在其中使用 Fcaebook sdk for android。我要做的是,当用户成功登录应用程序时,用户将转到第二个活动。但是,当用户通过按下主页按钮从第二个活动移动到主页时,并且当用户再次从设备单击应用程序图标时,第二个活动应该在那里,而不是登录活动。这是我的代码...
login.setSessionStatusCallback(new Session.StatusCallback() {
@Override
public void call(Session session, SessionState state, Exception exception) {
// TODO Auto-generated method stub
if(session.isOpened())
{
Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user, Response response) {
String email = user.asMap().get("email").toString();
Toast.makeText(getBaseContext(), email + " " + user.getBirthday() , 1000).show();
Intent in = new Intent(getBaseContext(), Second.class);
in.putExtra("ID", user.getId());
startActivity(in);
Login.this.finish();
}
});
}
}
});
当我在第二个活动中按下主页按钮后单击应用程序图标时,登录活动以注销按钮开始。但我想在这里开始第二个活动。需要做什么?