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 では、 の開始は次のようにオブジェクトでActivity行われます。Intent
Activity
Intent
Intent intent = new Intent(this,YourActivity.class); this.startActivity(intent);