Android 轮播图的实现方法总结

  • SliderLayout
  • LoopViewPage
  • BGABanner
  • 自定义view实现轮播
  • 仿魅族的banner轮播图

1. SliderLayout

GitHub地址:https://github.com/daimajia/AndroidImageSlider

预览效果如下


687474703a2f2f7777332e73696e61696d672e636e2f6d773639302f36313064633033346a773165677a6f7236366f6a64673230393530666b6e70652e676966.gif

使用方法如下:

  • [ 1 ] 添加依赖
gradle中配置
dependencies {
        compile "com.android.support:support-v4:+"
        compile 'com.squareup.picasso:picasso:2.3.2'
        compile 'com.nineoldandroids:library:2.4.0'
        compile 'com.daimajia.slider:library:1.1.5@aar'
}


  • [ 2 ] 在布局文件中使用
<com.daimajia.slider.library.SliderLayout
    android:id="@+id/slider"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    />

  • [ 3 ] 在代码中实现
sliderLayout = (SliderLayout) findViewById(R.id.slider);
    //添加图片控件
    for(int i=0;i<mTitles.length;i++)
    {
        TextSliderView textSliderView=new TextSliderView(this);
        textSliderView.description(mTitles[i]);//设置标题
        textSliderView.image(mImages[i]);//设置图片的网络地址
        textSliderView.setScaleType(BaseSliderView.ScaleType.CenterCrop);//设置图片的缩放效果;
        //添加到布局中显示
        sliderLayout.addSlider(textSliderView);
    }
    //设置指示器的位置
    sliderLayout.setPresetIndicator(SliderLayout.PresetIndicators.Center_Bottom);
    //设置图片的切换效果
    sliderLayout.setPresetTransformer(SliderLayout.Transformer.Accordion);
   // sliderLayout.setCustomAnimation(new DescriptionAnimation()); 添加textView动画特效
    //设置切换时长2000 ,时长越小,切换速度越快
    sliderLayout.setDuration(2000);

}

  • [ 4 ] 性能优化
//性能优化。当页面显示时进行自动播放
@Override
protected void onStart() {
    super.onStart();
    sliderLayout.startAutoCycle();
}

//性能优化。当页面不显示时暂停自动播放
@Override
protected void onStop() {
    super.onStop();
    sliderLayout.stopAutoCycle();
}


2. LoopViewPage

github地址:https://github.com/open-android/LoopViewPager
大神博客: http://www.jianshu.com/p/f847325e8a28

Paste_Image.png

3. 自定义view实现轮播

/*
* 广告轮播图的自定义View
 */

public class Advertisements implements OnPageChangeListener, View.OnTouchListener {
    private ViewPager vpAdvertise;
    private Context context;
    private LayoutInflater inflater;
    private boolean fitXY;
    private int timeDratioin;//多长时间切换一次pager
    private boolean isPlay = true;
    List<View> views;
    // 底部小点图片
    private ImageView[] dots;

    // 记录当前选中位置
    private int currentIndex;

    Timer timer;
    TimerTask task;
    int count = 0;

    private Handler runHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case 0x01:
                    int currentPage = (Integer) msg.obj;
                    setCurrentDot(currentPage);
                    vpAdvertise.setCurrentItem(currentPage);
                    break;
            }
        }

        ;
    };

    public Advertisements(Context context, boolean fitXY, LayoutInflater inflater, int timeDratioin, boolean isPlay) {
        this.context = context;
        this.fitXY = fitXY;
        this.inflater = inflater;
        this.timeDratioin = timeDratioin;
        this.isPlay = isPlay;
    }

    public View initView(final List<WebServiceItem> advertiseArray) {
        View view = inflater.inflate(R.layout.advertisement_board, null);
        vpAdvertise = (ViewPager) view.findViewById(R.id.vpAdvertise);
        vpAdvertise.setOnPageChangeListener(this);
        views = new ArrayList<View>();
        LinearLayout ll = (LinearLayout) view.findViewById(R.id.ll);//获取轮播图片的点的parent,用于动态添加要显示的点
        for (int i = 0; i < advertiseArray.size(); i++) {
            if (fitXY) {
                views.add(inflater.inflate(R.layout.advertisement_item_fitxy, null));
            } else {
                views.add(inflater.inflate(R.layout.advertisement_item_fitcenter, null));
            }
            ll.addView(inflater.inflate(R.layout.advertisement_board_dot, null));
        }
        initDots(view, ll);

        AdvertisementAdapter adapter = new AdvertisementAdapter(context, views, advertiseArray);
        vpAdvertise.setOffscreenPageLimit(3);
        vpAdvertise.setAdapter(adapter);
        new Thread() {
            @Override
            public void run() {
                while (isPlay) {
                    try {
                        sleep(timeDratioin);
                        int currentPage = count % advertiseArray.size();
                        count++;
                        Message msg = Message.obtain();
                        msg.what = 0x01;
                        msg.obj = currentPage;
                        runHandler.sendMessage(msg);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
        return view;
    }


    private void initDots(View view, LinearLayout ll) {


        dots = new ImageView[views.size()];

        // 循环取得小点图片
        for (int i = 0; i < views.size(); i++) {
            dots[i] = (ImageView) ll.getChildAt(i);
            dots[i].setEnabled(true);// 都设为灰色
        }

        currentIndex = 0;
        dots[currentIndex].setEnabled(false);// 设置为黄色,即选中状态
    }

    private void setCurrentDot(int position) {
        if (position < 0 || position > views.size() - 1
                || currentIndex == position) {
            return;
        }

        dots[position].setEnabled(false);
        dots[currentIndex].setEnabled(true);

        currentIndex = position;
    }

    @Override
    public void onPageScrollStateChanged(int arg0) {
        // TODO Auto-generated method stub
        switch (arg0) {
            case 1:// 手势滑动,空闲中
                isPlay = false;
                break;
            case 2:// 界面切换中
                isPlay = true;
                break;
            case 0:// 滑动结束,即切换完毕或者加载完毕
                // 当前为最后一张,此时从右向左滑,则切换到第一张
                if (vpAdvertise.getCurrentItem() == vpAdvertise.getAdapter().getCount() - 1 && !isPlay) {
                    vpAdvertise.setCurrentItem(0);
                }
                // 当前为第一张,此时从左向右滑,则切换到最后一张
                else if (vpAdvertise.getCurrentItem() == 0 && !isPlay) {
                    vpAdvertise.setCurrentItem(vpAdvertise.getAdapter().getCount() - 1);
                }
                break;
        }

    }

    @Override
    public void onPageScrolled(int arg0, float arg1, int arg2) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onPageSelected(int position) {
        // TODO Auto-generated method stub
        count = position;
        setCurrentDot(position);
    }

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                isPlay = false;
                Log.i("isPlay", "false");
                break;
            case MotionEvent.ACTION_UP:
                isPlay = true;
![0.gif](http://upload-images.jianshu.io/upload_images/6303777-247863508d77ffbe.gif?imageMogr2/auto-orient/strip)
                Log.i("isPlay", "true");
                break;
            default:
                break;
        }
        return true;
    }
}
  • 使用方法
  <LinearLayout
                    android:id="@+id/llAdvertiseBoard"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical" />

  view.addView(new Advertisements(getContext(), true, LayoutInflater.from(getContext()), 3000, true).initView(advertiseArray));

5. * 仿魅族的banner轮播图

地址:http://mp.weixin.qq.com/s/RZ_IWvlHcWD1erJrRff_lA

0.gif

6. BGABanner

https://github.com/bingoogolapple/BGABanner-Android
引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果 这也是GitHub上优秀的轮播控件 具体用法GitHub上介绍的很清楚 完善也有许多关于它的博客可以了解 这里就不在介绍了

dc235ec4-5f4a-11e6-92b7-144a2a1a1e3f.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349

推荐阅读更多精彩内容