Android int

Asked 1 years ago, Updated 1 years ago, 122 views

Please tell me how to use int on Androidㅠ<

It's my first time using Android, but I don't know how to change the screen

Please tell me how to go to Register Activity when I press the button in Login Activity

If there's a video, the address... Or the sauce

android intent

2022-09-22 11:42

2 Answers

https://developer.android.com/training/basics/firstapp/starting-activity.html

The part you want is Build an Intent~


2022-09-22 11:42


        Intent intent = new Intent (LoginActivity.this, RegisterActivity.class);
        startActivirty(intent);

This is.

Study about the intro and write the intro.

Even if you ask questions without studying, your development skills will not improve

Enjoy your dinner~


2022-09-22 11:42

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.