سؤال

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