Intent i=new Intent(MainActivity.this,SecondActivity.class); startActivity(i);Sourceww:w.lautturi.com
or replace the fragment
Fragment fragment = new tasks(); FragmentManager fragmentManager = getActivity().getSupportFragmentManager(); FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); fragmentTransaction.replace(R.id.content_frame, fragment); fragmentTransaction.addToBackStack(null); fragmentTransaction.commit();