Search code examples
androidandroid-activitynavigation-drawerandroid-fragmentactivity

I want to use activity instead of fragments in navigation activity?


As I create navigation activity I always use fragments. But now I want to use activity instead of that. Is it possible to do so?


Solution

  • Sure you can, just start the new activity with an Intent :

    Intent i = new Intent(getApplicationContext(), SecondScreen.class);
    StartActivity(i);