Android自定义封装banner组件

自定义封装 banner 组件,供大家参考,具体内容如下

1. 效果图预览

2.基本功能

一个简单方便的轮播图组件,基于viewpager 基础上进行的封装。
可设置 项目中图片,网络图片, View;
支持循环自动播放,手势滑动切换,item点击事件,可设置 点点的样式宽高、颜色、大小、位置 ;
可设置蒙层;可设置 是否允许滑动;可设置 是否允许循环。

3.基本实现

1). 自定义属性

<declare-styleable name="BannerLayoutStyle"> <attr name="maskStartColor" format="color|reference" /> <attr name="maskEndColor" format="color|reference" /> <attr name="selectedIndicatorColor" format="color|reference" /> <attr name="unSelectedIndicatorColor" format="color|reference" /> <attr name="indicatorShape" format="enum"> <enum name="rect" value="0" /> <enum name="oval" value="1" /> </attr> <attr name="selectedIndicatorHeight" format="dimension|reference" /> <attr name="selectedIndicatorWidth" format="dimension|reference" /> <attr name="unSelectedIndicatorHeight" format="dimension|reference" /> <attr name="unSelectedIndicatorWidth" format="dimension|reference" /> <attr name="indicatorPosition" format="enum"> <enum name="centerBottom" value="0" /> <enum name="rightBottom" value="1" /> <enum name="leftBottom" value="2" /> <enum name="centerTop" value="3" /> <enum name="rightTop" value="4" /> <enum name="leftTop" value="5" /> </attr> <attr name="indicatorSpace" format="dimension|reference" /> <attr name="indicatorMargin" format="dimension|reference" /> <attr name="autoPlayDuration" format="integer|reference" /> <attr name="scrollDuration" format="integer|reference" /> <attr name="isAutoPlay" format="boolean" /> <attr name="defaultImage" format="integer|reference" /> <attr name="isIndicatorVisible" format="boolean" /> <attr name="cornerRadii" format="dimension|reference" /> </declare-styleable>

2).基本方法

//添加本地图片路径 public void setViewRes(List<Integer> viewRes) {。。。} //添加网络图片路径 public void setViewUrls(List<String> urls) {。。。} //添加任意View视图 private void setViews2(final List<View> views) {。。。} // 设置是否允许 循环 public void setLoop(boolean loop) { } // 设置是否可以滑动 public void setSlideable(boolean slideable) { }

更多用法 详见代码,这里就不全部粘贴了。

3).使用示例:

<com.dzq.widget.CustomBannerView android:id="@+id/banner" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" app:autoPlayDuration="2000" app:defaultImage="@drawable/bg_banner" app:indicatorMargin="@dimen/indicatorMargin" app:indicatorPosition="rightBottom" app:indicatorShape="oval" app:indicatorSpace="@dimen/indicatorSpace" app:isAutoPlay="true" app:isIndicatorVisible="true" app:scrollDuration="1000" app:selectedIndicatorColor="@color/color_ec407a" app:selectedIndicatorHeight="5dp" app:selectedIndicatorWidth="5dp" app:unSelectedIndicatorColor="@color/color_71d9e7" app:unSelectedIndicatorHeight="5dp" app:unSelectedIndicatorWidth="5dp" /> <com.dzq.widget.CustomBannerView android:id="@+id/banner2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:layout_weight="1" app:autoPlayDuration="2000" app:defaultImage="@drawable/bg_banner" app:indicatorMargin="@dimen/indicatorMargin" app:indicatorPosition="rightBottom" app:indicatorShape="rect" app:indicatorSpace="@dimen/indicatorSpace" app:isAutoPlay="false" app:isIndicatorVisible="true" app:scrollDuration="1000" app:selectedIndicatorColor="@color/color_ec407a" app:selectedIndicatorHeight="5dp" app:selectedIndicatorWidth="10dp" app:unSelectedIndicatorColor="@color/color_71d9e7" app:unSelectedIndicatorHeight="10dp" app:unSelectedIndicatorWidth="5dp" /> <com.dzq.widget.CustomBannerView android:id="@+id/banner3" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:layout_weight="1" app:cornerRadii="5dp" app:indicatorMargin="@dimen/indicatorMargin" app:indicatorPosition="centerTop" app:indicatorShape="rect" app:indicatorSpace="@dimen/indicatorSpace" app:isAutoPlay="false" app:isIndicatorVisible="true" app:maskEndColor="#00000000" app:maskStartColor="#99000000" app:scrollDuration="1000" app:selectedIndicatorColor="#00CAA9" app:selectedIndicatorHeight="10dp" app:selectedIndicatorWidth="25dp" app:unSelectedIndicatorColor="#26000000" app:unSelectedIndicatorHeight="10dp" app:unSelectedIndicatorWidth="10dp" />

项目源码下载

导入自己项目

How to

To get a Git project into your build:

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects { repositories { ... maven { url 'https://jitpack.io' } } }

Step 2. Add the dependency

dependencies { compile 'com.github.dingzuoqiang:CustomBannerView:v1.0' }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

时间: 2024-11-13 09:24:17

Android自定义封装banner组件的相关文章

Android 自定义组件成JAR包的实现方法_Android

Android 自定义组件成JAR包的实现方法,这里对自己实现的Android View 组件进行JAR 包的处理.             在项目开发过程中,我们难免会用到自己去制作自定义的VIEW控件,之后我们别的项目如果需要的话就直接将其复制到对应的项目中使用,虽说这么做是一个解决问题的方法,但毕竟不是很好. 原因是,当我们项目积累越来越多,会发现自定义的控件越来越多,而且这些自定义的控件都是可以重复利用的,这时我们可以想想,如果把这些自定义控件都封装成一个JAR包,然后用一个项目积累起来

Android自定义组件获取本地图片和相机拍照图片

iOS中有封装好的选择图片后长按出现动画删除效果,效果如下 而Android找了很久都没有找到有这样效果的第三方组件,最后懒得找了还是自己实现这效果吧 选择图片后还可对图片进行剪裁 当然,代码中还有很多不完善的地方,我接下来会继续完善这个组件的 已经上传到开源社区,欢迎大家来Star啊~ Demo源码:传送门 设计中的碰到的一些问题和解决思路 1.如何让加号图片显示在GridView最后面 首先在调用GridAdapter构造方法时就加载加号图片 /** * 图片适配器 * @param con

iOS开发之自定义表情键盘(组件封装与自动布局)

下面的东西是编写自定义的表情键盘,话不多说,开门见山吧!下面主要用到的知识有MVC, iOS开发中的自动布局,自定义组件的封装与使用,Block回调,CoreData的使用.有的小伙伴可能会问写一个自定义表情键盘肿么这么麻烦?下面将会介绍我们如何用上面提到的东西来定义我们的表情键盘.下面的内容会比较多,这篇博文还是比较有料的. 还是那句话写技术博客是少不了代码的,下面会结合代码来回顾一下iOS的知识,本篇博文中用到的知识点在前面的博客中都能找到相应的内容,本篇算是一个小小的功能整合.先来张图看一

Android 自定义标签 和 自定义组件

1    自定义标签 这是我的模板项目目录     既然想像 android:text  那样使用自己的标签,那么首先得有标签. 在 res/values/ 下我新建了个 mm_tag.xml (切记不可出现大写,只能是 小写字母.数字.下划线) 第一步:    自定义 标签     mm_tag.xml <?xml version="1.0" encoding="utf-8"?>   <resources>       <declar

android自定义组件实现方法_Android

本文实例讲述了android自定义组件实现方法.分享给大家供大家参考.具体如下: atts.xml: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="TopBar"> <attr name="titleText" format="string"/> <

android自定义组件实现方法

本文实例讲述了android自定义组件实现方法.分享给大家供大家参考.具体如下: atts.xml: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="TopBar"> <attr name="titleText" format="string"/> <

Android自定义ActionBar实例_Android

本文实例讲述了Android自定义ActionBar的实现方法.分享给大家供大家参考.具体实现方法如下: Android 3.0及以上已经有了ActionBar的API,可以通过引入support package在3.0以下的平台引用这些API,但这儿呢,完全自定义一个ActionBar,不用引入额外jar包,参照的是开源的UI组件GreeenDroid,项目主页:https://github.com/cyrilmottier/GreenDroid .提取出关于ActionBar的相关文件,你可

Android自定义滑动接听电话控件组实例_Android

本文根据组件开发思想,首先介绍android自定义控件,然后将自定义的控件封装为jar包.最为实现滑动接听电话控件组. 一.目录结构 二.运行效果 三.代码实现 首先,自定义一个类IncomingPhone继承RelativeLayout public IncomingPhone(Context context, AttributeSet attrs) { super(context, attrs); mContext = context; TextView textView = new Tex

Android自定义ActionBar实例

本文实例讲述了Android自定义ActionBar的实现方法.分享给大家供大家参考.具体实现方法如下: Android 3.0及以上已经有了ActionBar的API,可以通过引入support package在3.0以下的平台引用这些API,但这儿呢,完全自定义一个ActionBar,不用引入额外jar包,参照的是开源的UI组件GreeenDroid,项目主页:https://github.com/cyrilmottier/GreenDroid .提取出关于ActionBar的相关文件,你可