public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { var view = inflater.Inflate(Resource.Layout.ghost_view_activity, container, false); view.FindViewById <RelativeLayout>(Resource.Id.view_ghost_layout).Click += delegate { SupportFragmentManager.PopBackStack(); }; _imageView = view.FindViewById <ImageView>(Resource.Id.ghost_viewer_image); _timeLeft = view.FindViewById <TextView>(Resource.Id.ghost_timeleft); _timeLeft.AddShadow(); return(view); }