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
Add android:checked="true" to your first menu item.
android:checked="true"
And manually select one item, using
getSupportFragmentManager().beginTransaction().replace(R.id.frame, postListFragment).commit();
to open fragment.