Finding a resource in your layout is easy if you know the id:
LinearLayout l = FindViewById<LinearLayout>(Resource.Id.linearLayout1); but say I have
String id = "linearLayout1"; How can I access the resource IDs and "find" the one I'm looking for?