Inheritance: FrameLayout
        public MapFragmentBinding(LayoutInflater inflater, ViewGroup root, bool attachToRoot)
        {
            Root = inflater.Inflate(Resource.Layout.fragment_map, root, attachToRoot);

            mapSearchView = Root.FindViewById<MapSearchView>(Resource.Id.map_search_view);
            loadingView = Root.FindViewById<FrameLayout>(Resource.Id.loading_view);
        }
 public static MapSearchViewBinding Inflate(LayoutInflater inflater, int layoutId, MapSearchView view, bool attachToRoot)
 {
     return new MapSearchViewBinding(inflater, layoutId, view, attachToRoot);
 }
 private MapSearchViewBinding(LayoutInflater inflater, int layoutId, MapSearchView view, bool attachToRoot)
 {
     Root = inflater.Inflate(layoutId, view, attachToRoot);
     mapListContainer = Root.FindViewById<ViewGroup>(Resource.Id.map_list_container);
 }
示例#4
0
 private MapSearchViewBinding(LayoutInflater inflater, int layoutId, MapSearchView view, bool attachToRoot)
 {
     Root             = inflater.Inflate(layoutId, view, attachToRoot);
     mapListContainer = Root.FindViewById <ViewGroup>(Resource.Id.map_list_container);
 }
示例#5
0
 public static MapSearchViewBinding Inflate(LayoutInflater inflater, int layoutId, MapSearchView view, bool attachToRoot)
 {
     return(new MapSearchViewBinding(inflater, layoutId, view, attachToRoot));
 }