private void MAdapterOnItemLongClick(object sender, CommentAdapterClickEventArgs e)
        {
            try
            {
                if (e.Position <= -1)
                {
                    return;
                }

                var item = MAdapter.GetItem(e.Position);
                if (item == null)
                {
                    return;
                }

                CommentClickListener?.MoreCommentPostClick(item);
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception);
            }
        }