Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GridView がスクロールされたときに、Android の GridView を無限にループ/すべての項目を繰り返すようにします。
たとえば、GridView に 1 つの列と 3 つの項目があるとします。次のように表示したい: ... 項目 1 項目 2 項目 3 項目 1 項目 2 項目 3 項目 1 ....
アダプターを返しInteger.MAX_VALUEてgetCount()から getView を使用してデータを取得しますmyData[position % myData.length]
Integer.MAX_VALUE
getCount()
myData[position % myData.length]