Exemplo n.º 1
0
 public RelationshipListAdapter(RelationshipFragment fragment,ref List<Tap5050Relationships> list)
 {
     nn_list = list;
     nn_fragment = fragment;
 }
Exemplo n.º 2
0
        public void ShowRelationship()
        {
            if(!IsFinishing){
                SupportFragmentManager.PopBackStack(null,(int)PopBackStackFlags.Inclusive);

                var fragment =new RelationshipFragment ();
                var ft = SupportFragmentManager.BeginTransaction ();
                ft.Replace (Resource.Id.home_content_framelayout, fragment);
                ft.CommitAllowingStateLoss ();
                currentfragment = (global::Android.Support.V4.App.Fragment)fragment;
            }
        }