ADF Mobileで1回の反復で2つの行属性を取得する方法を知りたいです。
私の要件では、以下のようにページに画像を表示する必要があります。
image1 image2
image3 image4
image5 ...
そのため、listView を使用してこれを行います。
<amx:listView var="row" value="#{ImageList.collectionModel}"
fetchSize="-1" id="lv1" rendered="true">
<amx:listItem id="li1">
<amx:tableLayout width="100%" id="tl3">
<amx:rowLayout id="rl2">
<amx:cellFormat width="100%" halign="center" id="cf4">
<amx:image source="#{row.imageFile}" id="i2"/>
</amx:cellFormat>
<amx:cellFormat width="100%" halign="center" id="cf5">
<amx:image source="#{row.imageFile}" id="i3"/>
</amx:cellFormat>
</amx:rowLayout>
</amx:tableLayout>
</amx:listItem>
</amx:listView>
ほら、ここで私は各反復で同じ行を受け取ることができます。各反復で2つの異なる行を取得するにはどうすればよいですか?
ありがとう!