public void OnConversationClick(AtlasConversationsAdapter adapter, Conversation conversation)
            {
                Intent intent = new Intent(_activity, typeof(MessagesListActivity));

                if (Util.Log.IsLoggable(Util.Log.VERBOSE))
                {
                    Util.Log.v("Launching MessagesListActivity with existing conversation ID: " + conversation.Id);
                }
                intent.PutExtra(PushNotificationReceiver.LAYER_CONVERSATION_KEY, conversation.Id);
                _activity.StartActivity(intent);
            }
 public bool OnConversationLongClick(AtlasConversationsAdapter adapter, Conversation conversation)
 {
     return(false);
 }