0

我有 2 个按钮,称为previousBttnnextBttnfor scrollView。我有 3 张图片scrollView

  1. 我想像这样隐藏previousBttn:[...] > 在第一张图片

  2. 当我点击nextBttn第二张图片时,2 按钮将显示如下:< [...] >

  3. 最后,在第三张图片nextBttn将隐藏,previousBttn 将显示如下:< [...]

    过程:[...] > < [...] > < [...]

swipe当我们所有的图像时,它也是一样的。

4

2 回答 2

1

我认为你必须自己做。您知道当前可见页面的索引和图像总数。if (index == 0) hidePreviousButtonORShowThis[...]>. else if (index == totalImageCount - 1) then hideNextButton else UnhideBothButtons.

您可以将图像用于这些标志 [...]> <[...] <[...]>

于 2013-03-26T07:33:58.517 回答
0
    int currentIndex = 0;   // set to first postion
    // if you are at first position
    if(currentIndex == 0)
    {
        // hide previous button
    }
    else if(currentIndex == yourImageCount)
    {
        // hide next button
    }
    else
    {
        // show both the buttons
    }
于 2013-03-26T08:15:49.253 回答