예제 #1
0
        public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
        {
            var view = inflater.Inflate(Resource.Layout.AllLists, null);

            _lists = _repository.GetAllListsWithCildren();

            ListAdapter = new AllListsAdapter(Activity, _lists);

            return(view);
        }
예제 #2
0
 public void UpdateLists()
 {
     _lists      = _repository.GetAllListsWithCildren();
     ListAdapter = new AllListsAdapter(Activity, _lists);
 }