Jak utworzyć detektor działań widoku dla MvxItemTemplate

Mam widok, który zawiera MvxListView i formularz. Mogę ukryć klawiaturę programową za pomocą następującego kodu w kodzie mojego widoku (ponieważ dotyczy to wyłącznie widoku)

var editText = FindViewById<EditText>(Resource.Id.newCheckbookName);
editText.EditorAction += (object sender, TextView.EditorActionEventArgs e) =>
    {
        if (e.ActionId == ImeAction.Done)
        {
            InputMethodManager inputMgr = GetSystemService(InputMethodService) as InputMethodManager;
            inputMgr.HideSoftInputFromWindow(CurrentFocus.WindowToken, 0);
        }
        return;
   };

W moim szablonie przedmiotu mam inny edytor tekstu i chciałbym mieć to samo zachowanie. Ale gdzie mogę dodać mój kod, ponieważ nie mam żadnego kodu widoku dla MwxItemTemplate?

questionAnswers(1)

yourAnswerToTheQuestion