2

您好,我正在使用幻灯片演示参考的水平图像滚动。

现在我想让它变成圆形,这样当我的第 43 张图像出现时,滚动不会停止,它应该与第一个图像一起出现。

我已经添加了这样的图像。

public void addImagesToView() {
    for (int j = 0; j < Utility.image_array.length; j++) {
        final Button imageButton = new Button(this);
        imageButton.setBackgroundResource(Utility.image_array[j]);
        imageButton.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
        System.gc();
        Runtime.getRuntime().gc();
        imageButton.setTag(i);
        imageButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View arg0) {
                if (isFaceDown) {
                    /*
                     * if (clickTimer != null) { clickTimer.cancel();
                     * clickTimer = null; } clickedButton = (Button) arg0;
                     * stopAutoScrolling();
                     * clickedButton.startAnimation(scaleFaceUpAnimation());
                     * clickedButton.setSelected(true); clickTimer = new
                     * Timer();
                     * 
                     * if (clickSchedule != null) { clickSchedule.cancel();
                     * clickSchedule = null; } clickSchedule = new
                     * TimerTask() { public void run() {
                     * startAutoScrolling(); } };
                     * clickTimer.schedule(clickSchedule, 1500);
                     */
                }
            }
        });

        LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                256, 256);
        params.setMargins(0, 25, 0, 25);
        imageButton.setLayoutParams(params);
        horizontalOuterLayout.addView(imageButton);
    }
}

我只想知道我们如何才能使这 43 个图像平滑地循环,这样当我向右滚动并到达最后一个图像时,它应该与第一个图像一起向右滚动,依此类推。与左滚动相同。

4

1 回答 1

2

这是 InfiniteScrollView 可以帮助您或为您提供滚动和循环滚动的想法 https://github.com/satansly/InfiniteScrollView

我希望对你有所帮助。

于 2013-08-12T13:12:51.390 回答