public void OnItemSelected(Item item, int position)
 {
     currentSelectedPosition = position;
     // Showing ItemDetailFragment on the right screen when the app is in spanned mode
     ShowFragment(ItemDetailFragment.NewInstance(item), Resource.Id.master_detail);
 }
Exemplo n.º 2
0
 public void OnItemSelected(Item item, int position)
 {
     currentSelectedPosition = position;
     ShowBackOnActionBar(true);
     ShowFragment(ItemDetailFragment.NewInstance(item));
 }