public ExtendedScrollViewRenderer(Context context) : base(context)
        {
            var activity = context as Activity;

            if (activity != null)
            {
                keyboardService = new SoftKeyboardService(activity);
            }
        }
        public CarouselViewRenderer(Context context) : base(context)
        {
            _context = context;

            // KeyboardService code
            var activity = _context as Activity;

            if (activity != null)
            {
                keyboardService = new SoftKeyboardService(activity);
            }
        }
Пример #3
0
 public GlobalLayoutListener(SoftKeyboardService softwareKeyboardService)
 {
     _softwareKeyboardService = softwareKeyboardService;
     ObtainInputManager();
 }