public View FindViewById(int id)
 {
     if (_slidingMenu != null)
     {
         var v = _slidingMenu.FindViewById(id);
         if (v != null)
         {
             return(v);
         }
     }
     return(null);
 }
        /// <summary>
        /// Finds a view that was identified by the id attribute from the XML that was processed in onCreate(Bundle).
        /// </summary>
        /// <param name="id"> the resource id of the desired view </param>
        /// <returns> The view if found or null otherwise. </returns>
        public View FindViewById(int id)
        {
            View v;

            if (mSlidingMenu != null)
            {
                v = mSlidingMenu.FindViewById(id);
                if (v != null)
                {
                    return(v);
                }
            }
            return(null);
        }