I want to log in to the Android studio and go over the screen.

Asked 1 years ago, Updated 1 years ago, 125 views

I'm programming by myself. I don't have any knowledge, but I'm studying hard by googling.

Create a login button linked to Naver, Kakao, and Google (Firebase) and

I think I'm logged in, but I want to move on to the next screen, so even if I google how to do it,

I can't find it.ㅜ<

Login in the main activity using any of the above 3 methods and once successful

For the next activity, "Intent"?I want to do it, but I'm asking you how to implement it.;;

android login actvitiy intent

2022-09-20 15:44

1 Answers

I think it would be helpful if you refer to it will be helpful https://developer.android.com/reference/android/content/Intent

The basic usage is as follows.

Intent i= new Intent (context, NextActivity.class);
startActivity(i); // or startActivityForResult


2022-09-20 15:44

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.