public bool OnEditorAction(TextView v, ImeAction actionId, KeyEvent event_)
 {
     if (actionId == ImeAction.Done || event_.KeyCode == Keycode.Enter)
     {
         _activity.SetUiState(UiState.CONVERSATION_COMPOSER);
         _activity.SetTitle(true);
         return(true);
     }
     return(false);
 }
 public void OnConversationClick(AtlasAddressBar addressBar, Conversation conversation)
 {
     _activity.SetConversation(conversation, true);
     _activity.SetTitle(true);
 }