我认为这会将资源中的两个数组绑定到一个数组中:
Resource res=getResources();
final int[] one_array=res.getIntArray(R.array.first_array) + res.getIntArray(R.array.second_array);
但是变量数组不能像这样声明:
The operator + is undefined for the argument type(s) int[], int[]
另外我想将两个数组从资源+一个数组绑定到一个数组中。在我看来,应该是:
Resource res=getResource();
final int[] one_array={ 1,2,3,4,5,res.getIntArray(R.array.first_array),res.getIntArray(R.array.second_array) };
但是变量数组不能像这样声明:
Multiple markers at this line
- Type mismatch: cannot convert from
int[] to int
如何通过绑定资源和普通数组中的两个数组来实现声明一个数组?是否有其他/替代方法/解决方案来绑定数组?