Exemple #1
0
        public static StatusTabFragment Instance(int position)
        {
            StatusTabFragment rf = new StatusTabFragment();
            Bundle            b  = new Bundle();

            b.PutInt("position", position);
            rf.Arguments = b;
            return(rf);
        }
Exemple #2
0
 public override Android.Support.V4.App.Fragment GetItem(int position)
 {
     if (isMy)
     {
         fragment = StatusTabFragment.Instance(position, isMy);
     }
     else
     {
         fragment = StatusTabFragment.Instance(position);
     }
     fragments.Add(fragment);
     return(fragment);
 }