In the Java code of an Android project, if you want a link 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 using a string, for example, " R.id.button_0 "?
I would like to refer to the button on " R.id.button_%i ", where %i is replaced with some valid index.
java android layout
SK9 Jan 18 2018-11-18T00: 00Z
source share