public PagerAnimatedAdapter(IList <TData> dataCollection, ViewInflatHandler viewInflater,
                             ShapeDrawable shapeBackground, ShapeDrawable shapeForeground, FragmentManager fm) : base(fm)
 {
     _dataCollection  = dataCollection;
     _viewInflater    = viewInflater;
     _shapeBackground = shapeBackground;
     _shapeForeground = shapeForeground;
 }
 public PagerAnimatedFragment(TData data, ViewInflatHandler viewInflater,
                              PagerItemClickHandler itemClickHandler, ShapeDrawable shapeBackground, ShapeDrawable shapeForeground)
 {
     _data             = data;
     _viewInflater     = viewInflater;
     _itemClickHandler = itemClickHandler;
     _shapeBackground  = shapeBackground;
     _shapeForeground  = shapeForeground;
 }