public override Android.Views.View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
        {
            mRootView = (ViewGroup)inflater.Inflate(Resource.Layout.fragment_tracks_dropdown, null);
            mTitle    = (TextView)mRootView.FindViewById(Resource.Id.track_title);
            mAbstract = (TextView)mRootView.FindViewById(Resource.Id.track_abstract);

            mRootView.Click += (sender, e) => {
                mListPopupWindow = new ListPopupWindow(Activity);
                mListPopupWindow.SetAdapter(mAdapter);
                mListPopupWindow.Modal = true;
                mListPopupWindow.SetContentWidth(400);
                mListPopupWindow.AnchorView = mRootView;
                mListPopupWindow.SetOnItemClickListener(this);
                mListPopupWindow.Show();
                mListPopupWindow.SetOnDismissListener(this);
            };

            return(mRootView);
        }
		public override Android.Views.View OnCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
		{
			mRootView = (ViewGroup)inflater.Inflate (Resource.Layout.fragment_tracks_dropdown, null);
			mTitle = (TextView)mRootView.FindViewById (Resource.Id.track_title);
			mAbstract = (TextView)mRootView.FindViewById (Resource.Id.track_abstract);
	
			mRootView.Click += (sender, e) => {
				mListPopupWindow = new ListPopupWindow (Activity);
				mListPopupWindow.SetAdapter (mAdapter);
				mListPopupWindow.Modal = true;
				mListPopupWindow.SetContentWidth (400);
				mListPopupWindow.AnchorView = mRootView;
				mListPopupWindow.SetOnItemClickListener (this);
				mListPopupWindow.Show ();
				mListPopupWindow.SetOnDismissListener (this);
			};

			return mRootView;
		}