0
的數組我有資源的數組:創建佈局
<integer-array name="my_layouts_array">
<item>@layout/layout1</item>
<item>@layout/layout2</item>
<item>@layout/layout3</item>
...
<item>@layout/layoutn</item>
</integer-array>
Eclipse可以從這個文件移到我所選的佈局上按Ctrl +點擊。
當我訪問來自代碼
getResources().getIntArray(R.array.my_layouts_array);
它返回箱尺寸n
的陣列該陣列中,但只包含零。
我在做什麼錯在這裏?