문제

I am developing an app. Its first page is a login screen. When successfully logged in I want to take the user to a tabbed activity. How can I do this in android? Thanks

도움이 되었습니까?

해결책

In Android, starting an Activity is done with an Intent object, like this:

Intent intent = new Intent(this,YourActivity.class);
this.startActivity(intent);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top