0

我正在开发一个应用程序。它的第一页是登录屏幕。成功登录后,我想将用户带到选项卡式活动。我怎么能在android中做到这一点?谢谢

4

1 回答 1

2

在 Android 中,启动 anActivity是使用Intent对象完成的,如下所示:

Intent intent = new Intent(this,YourActivity.class);
this.startActivity(intent);
于 2012-04-28T23:50:22.080 回答