protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.registration_view);

            // hide keyboard when last editText lost focus
            FieldsService.LostFocusFromField(Resource.Id.phoneNumber_editText);
        }
Example #2
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.profile_view);

            // hide keyboard when last editText lost focus
            FieldsService.LostFocusFromField(Resource.Id.zip_code_editText);
        }
Example #3
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.license_view);

            // hide keyboard when last field lost focus
            FieldsService.LostFocusFromField(Resource.Id.license_spinner_vehicle_class);
        }