我有以下代码
double[]
我在arraylist中存储了double[]
类型的数组。
我想访问位于第一个位置和第二个位置15.22,1.1,1,4
数组的arraylist中的元素。对于我的示例,我想分别访问25.22,2.3,2,5
和StaggeredGridLayoutManager glm= new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
glm.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);
。有什么方法可以让我在arraylist中存储特定的元素吗?
另外,如果我在arraylist中有更多元素,我如何得到我的欲望结果?
答案 0 :(得分:1)
使用吹码:
double temp1[] = new double[alParent.size()];
double temp2[] = new double[alParent.size()];
for (int i = 0; i < alParent.size(); i++) {
temp1[i] = alParent.get(i)[0];
temp2[i] = alParent.get(i)[1];
}
temp1和temp2是你想要的数组。