Given an application where there are many identical view and button ,
where each button + each view has its own unique id . For example, plus1 for the first, plus2 for the second, etc. How can I get all the elements in the code at once, so as not to write separately for each button an ImageButton plus1 = findViewById(R.id.plus1); ?
