It posibile to delete special View in the LinearLayout onClick in Xamarin Android ? For example I introduce in LinearLyout some TextView's and I touched one to delete . I can do this without Id of TextView , can I delet throught LinearLayout ? Logical scheme :
var layout = FindViewById<LinearLayout>(Resource.Id.layout);
TextView text;
layout.Click += (sender, e) => {text = new TextView(this); text.Text="Text";
layout.AddView(text) };
// And here I don't know how to make, something like this
layout.Click /*Click on text*/ += (sender,e) = layout.Remove(/*OnTouched
TextView in LinearLayout*/);
It is posibile ?