I am using the navigation-drawer
template in eclipse to do a simple Android application.
I have some trouble with fragment.
I declared a fragment called PresenceL
You can't load a fragment through Intent. You have to do it using fragment manager in this way:
Fragment fragment = new PresenceLogFragment(MainActivity.this);
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction ft = fragmentManager.beginTransaction();
ft.replace(R.id.yourFragmentContainer, fragment).commit();