I have a LinearLayout
comprising of a few Button
s and I add this to my activity in the onCreate(..)
method with setContentView(R.layout.myscreen)
. No surprises so far.
How do I get a reference to an iterator to these buttons? I'd like to add listeners to them but I'd rather not directly reference the Button's using their android:id
.
Similar questions have been asked here and here but they don't quite answer my question.