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
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
© 2024 OneMinuteCode. All rights reserved.