/// <summary>
        /// Call to the navigation fragment to select the correct value in the list view to change fragments
        /// </summary>
        /// <param name="index"></param>
        private void SelectNavigation(int index)
        {
            NavigationFragment fragment = (NavigationFragment)this.FragmentManager.FindFragmentById(Resource.Id.navigationFragmentContainer);

            fragment.SetNavigation(index);
        }
Exemplo n.º 2
0
 public NavigationItemSelectorListener(NavigationFragment fragment)
 {
     this.fragment = fragment;
 }