protected void RemoveFlowTag(string tag)
        {
            var flowView = _tagsFlow.FindViewWithTag(tag);

            if (flowView != null)
            {
                _tagsFlow.RemoveView(flowView);
            }
        }
 public void RemoveItem(View view)
 {
     mFlowLayout.RemoveView(LastView);
 }