I have created MainActivity with NavigationView. When Activity is opened I want to automatically select the first item in the navigation d
MainActivity
NavigationView
Activity
just add this code in onCreate method:
onCreate
FragmentTransaction ftrans = getFragmentManager().beginTransaction(); ftrans.replace(R.id.container, ).commit();
Work for me !