Esempio n. 1
0
        public static void AddTextChangedAction(this AppCompatEditText self,
                                                Action <ICharSequence, int, int, int> onTextChangedHandler)

        {
            self.AddTextChangedActions(
                (s, start, count, after) => {},
                (s) => {},
                onTextChangedHandler);
        }