android中的圆形图像水平scrollview,这样当我到达最后一张图像时,首先会到达,当我到达第一张图像时,最后会到来

时间:2013-02-14 05:23:37

标签: java android horizontalscrollview circular-list

您好我正在使用水平图像滚动,引用为Slide show Demo

现在我想把它变成圆形,以便当我的第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张图像顺畅地旋转所以当我向右滚动并到达最后一张图像时,它应该向右滚动第一张图像,依此类推。与左滚动相同。

1 个答案:

答案 0 :(得分:2)

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

我希望能帮到你。