Android Studio - Automatically Change Activity after Few Seconds | Tutorial

Android Studio - Automatically Change Activity after Few Seconds | Tutorial

Stevdza-San

6 лет назад

53,306 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Alicegaming
Alicegaming - 13.05.2023 13:27

Thx and best tutorial...

Ответить
Sadaf Ahmed
Sadaf Ahmed - 25.04.2023 18:42

amazing ... to the point video ...Man ! you saved my time

Ответить
Syedzada12
Syedzada12 - 18.02.2023 15:23

Thanks Alot sir

Ответить
lorenzo medici
lorenzo medici - 06.10.2022 13:50

thank u so much

Ответить
MR ᴄrɪᴍɪɴᴀʟ
MR ᴄrɪᴍɪɴᴀʟ - 27.05.2022 19:13

Thank you so much sir for your help😍😍

Ответить
Thanh Nhi
Thanh Nhi - 21.04.2022 21:43

when i run it on real device it got the bug is loop from ViewPostlme pointer 1/0 when i click Login or Register button? Help me!!

Ответить
Abdu Allah
Abdu Allah - 01.03.2022 21:43

Your teaching is perfect. It's simple not complicated for beginners.. Thanks a lot

Ответить
Anton Antochi
Anton Antochi - 05.02.2022 02:29

Tooo skinky

Ответить
Abdur Rahaman Asim
Abdur Rahaman Asim - 15.10.2021 18:48

if you got error try this

final Handler handler = new Handler();
Timer timer2 = new Timer();
TimerTask testing = new TimerTask() {
public void run() {
handler.post(new Runnable() {
public void run() {
Toast.makeText(mainActivity.this, "test", Toast.LENGTH_SHORT).show();
}

});


}
};
timer2.schedule(testing, 1000);

Ответить
DEVIL
DEVIL - 21.08.2021 06:13

Sir I have one doubt I can't explain it by writing I have to send the screen recording so how can I contact u so that u can help me 😭😭🙏🙏🙏🙏plz help me sir bcz.. it's my project and I got stuck in this problem

Ответить
kubaN /B/
kubaN /B/ - 09.05.2021 14:18

Its any way to make change to another activity after, for example 2 min. but only if its no user activity, like not browse website or somethink like that? Like screen saver

Ответить
Krishna Kumar
Krishna Kumar - 09.03.2021 12:03

Thanks Dude It helps me

Ответить
Jorge Ponton
Jorge Ponton - 25.02.2021 23:56

would you know how to change activity in a random time? in a time range?

Ответить
thetechtiger
thetechtiger - 18.11.2020 15:01

thank you, need this guide. very straight forward.

Ответить
Charles Fenianos
Charles Fenianos - 30.10.2020 00:43

Thank you so mush <3

Ответить
Darwase
Darwase - 16.06.2020 13:51

Does anybody knows why am I stucked in the splash screen all the way :(

Ответить
Marco Antonio
Marco Antonio - 15.06.2020 10:41

Thanks! your video is pretty useful :) greetings from mexico

Ответить
Pühvo Puro
Pühvo Puro - 13.06.2020 17:37

Can you please tell me how to turn my mediaplayer ON for one sec and OFF for one second?
Please anyone

Ответить
Sohaib Shahbaz
Sohaib Shahbaz - 11.06.2020 03:05

public class MainActivity extends AppCompatActivity {
Timer timer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Login.class);
startActivity(intent);
finish();
}
},3000);
}
}

Ответить
hanada nefa
hanada nefa - 04.06.2020 19:41

how to make it put it in textview to see the countdown?

Ответить