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
In onCreate(), following code will load the first item's fragment upon first start:
onCreate()
if (savedInstanceState == null) { navigationView.getMenu().performIdentifierAction(R.id.posts, 0); }
Thanks to calvinfly for this comment.