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?
Sure you can, just start the new activity with an Intent :
Intent i = new Intent(getApplicationContext(), SecondScreen.class);
StartActivity(i);