Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序。它的第一页是登录屏幕。成功登录后,我想将用户带到选项卡式活动。我怎么能在android中做到这一点?谢谢
在 Android 中,启动 anActivity是使用Intent对象完成的,如下所示:
Activity
Intent
Intent intent = new Intent(this,YourActivity.class); this.startActivity(intent);