In the Java code of an Android project if you want the reference for a view resource you can do something like:
View addButton = findViewById(R.id.button_0);
In the above R.id.button_0 is not a String. Is it possible to dynamically refer to a resource by a string, such as "R.id.button_0
"?
I'd like to refer to a button by "R.id.button_%i
" where %i
is replaced by some valid index.