How do you set the value of one private integer to another?
i.e:
private Integer [] mOne = {R.string.1, R.string.2};
to be–>
private Integer [] mTwo = {Integer mOne[]};
except that code doesn’t work. the point being to have mTwo = {R.string.1,R.string.2} without having to explicitly write that…
I know what I want to say, just don’t know how to say it! thanks for your help
This creates a reference. If you need a copy: