Android图片轮播组件(多模式) android-image-indicator

码农软件 · 软件分类 · Android UI 组件 · 2019-04-26 20:26:56

软件介绍

一、简介

基于ViewPager的用户指引,广告图片Gallery,及自动轮播图片Gallery,使用起来超简单!
GitHub地址:https://github.com/panxw/android-image-indicator

二、使用示例

1、广告图片Gallery

<com.allthelucky.common.view.ImageIndicatorView
    android:id="@+id/indicate_view"
    android:layout_width="match_parent"
    android:layout_height="160dp" />
代码:

imageIndicatorView = (ImageIndicatorView) findViewById(R.id.indicate_view);
  final Integer[] resArray = new Integer[] { R.drawable.ic_launcher, R.drawable.ic_launcher };
  imageIndicatorView.setupLayoutByDrawable(resArray);
  imageIndicatorView.show();
2、自动轮播模式

<com.allthelucky.common.view.AutoImageIndicatorView
    android:id="@+id/auto_indicate_view"
    android:layout_width="match_parent"
    android:layout_height="160dp" />
代码:

autoImageIndicatorView = (AutoImageIndicatorView) findViewById(R.id.auto_indicate_view);
final Integer[] resArray = new Integer[] { R.drawable.ic_launcher, R.drawable.ic_launcher };
autoImageIndicatorView.setBroadcastEnable(true);
autoImageIndicatorView.setBroadCastTimes(5);//循环播放5次
autoImageIndicatorView.setBroadcastTimeIntevel(2 * 1000, 3 * 1000);//播放启动时间及间隔
autoImageIndicatorView.setupLayoutByDrawable(resArray);//图片
autoImageIndicatorView.show();

效果图:


3、用户指引模式

this.imageIndicatorView = (ImageIndicatorView) findViewById(R.id.guide_indicate_view);
final Integer[] resArray = new Integer[] { R.drawable.ic_launcher, R.drawable.ic_launcher };
imageIndicatorView.setupLayoutByDrawable(resArray);
imageIndicatorView.setIndicateStyle(ImageIndicatorView.INDICATE_USERGUIDE_STYLE);
imageIndicatorView.show();

效果图:



PS:
顺便宣传下自己的GitHub,https://github.com/panxw, 欢迎来Follow~

本文地址:https://codercto.com/soft/d/4454.html

Introduction to Programming in Java

Introduction to Programming in Java

Robert Sedgewick、Kevin Wayne / Addison-Wesley / 2007-7-27 / USD 89.00

By emphasizing the application of computer programming not only in success stories in the software industry but also in familiar scenarios in physical and biological science, engineering, and appli......一起来看看 《Introduction to Programming in Java》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

MD5 加密
MD5 加密

MD5 加密工具