Android_記封裝Banner的過程乳规,快速實現(xiàn)App輪播圖

支持圖片無限輪播的BannerLayout

RecyclerView Banner

利用RecyclerView實現(xiàn)的Banner輪播

RecyclerBanner

代碼示例:

https://github.com/7449/BannerLayout(https://github.com/7449/BannerLayout)

BannerLayout

支持圖片無限輪播的BannerLayout

支持功能

  • 功能較多葵蒂,很多功能都已添加鬓椭,建議下載sample ,查看代碼
  • 支持動態(tài)更新數(shù)據(jù)

  • 可自定義小圓點,title,提示欄位置趴酣,支持自定義selector選擇器

  • 支持 Banner 為 ListView 或 RecyclerView 的 Header 欢峰,滑動時且不影響B(tài)anner的滾動

  • 可自定義是否自動輪播,輪播時間

  • 支持點擊事件以及輪播速度及viewPager滑動切換速度

  • 支持是否顯示小圓點,title,或者整個提示欄

  • 支持加載時和加載失敗時顯示自定義圖片

  • 支持選擇暫停 恢復(fù) 輪播狀態(tài)

  • 支持動畫以及垂直滾動

使用效果

  • 如果加載失敗請移步至GitHub主頁查看



基礎(chǔ)使用方法

gradle

compile 'com.ydevelop:bannerlayout:1.1.1'

maven

<dependency>
  <groupId>com.ydevelop</groupId>
  <artifactId>bannerlayout</artifactId>
  <version>1.1.1</version>
  <type>pom</type>
</dependency>

建議先看一下示例 : SimpleActivity

如果是網(wǎng)絡(luò)加載圖片 記得添加

<uses-permission android:name="android.permission.INTERNET" />

簡單使用方式

Bean類請實現(xiàn) BannerModelCallBack

具體可參考 SimpleBannerModel

如果讓BannerLayout實現(xiàn)圖片的加載記得依賴Glide

compile 'com.github.bumptech.glide:glide:3.7.0'

或者實現(xiàn)ImageLoaderManager

public class SimpleManager implements ImageLoaderManager<SimpleBannerModel> {

    @NonNull
    @Override
    public ImageView display(@NonNull ViewGroup container, SimpleBannerModel model) {
        ImageView imageView = new ImageView(container.getContext());
        // picasso or fresco or universalimageloader
        return imageView;
    }
}

示例 :ImageManagerSimple

簡易實現(xiàn):

    banner
            .initListResources(data)
            //if you use glide this step is not necessary
            .setImageLoaderManager(new SimpleImageManager()) 
            .switchBanner(true/false);

垂直滾動

    banner
            .setVertical(true)

PageChangeListener

    banner
            .addOnPageChangeListener(
                    new OnBannerChangeListener() {
                        @Override
                        public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {

                        }

                        @Override
                        public void onPageSelected(int position) {

                        }

                        @Override
                        public void onPageScrollStateChanged(int state) {

                        }
                    });

點擊事件

如果不傳遞泛型纽帖,返回的model就是當(dāng)前Bean類宠漩,強轉(zhuǎn)即可,建議傳遞泛型

    banner
            .setOnClickListener(
                    new OnBannerClickListener<SimpleBannerModel>() {
                        @Override
                        public void onBannerClick(View view, int position, SimpleBannerModel model) {

                        }
                    });

提示欄及小圓點懊直、title位置的改變

setTipsSite()               提示欄在布局中的位置扒吁,top,bottom,center三種可選 
setDotsSite()               小圓點在提示欄的位置,left,center,right三種可選 
setTitleSite()              title在提示欄的位置室囊,left,center,right三種可選 

xml:
        <com.bannerlayout.widget.BannerLayout
            ...
            app:tips_site="center" />

切換動畫以及速度

viewpager的垂直這里用的是動畫雕崩,所以只要選擇了垂直滾動,設(shè)置動畫無效

動畫內(nèi)置的 ViewPagerTransforms融撞,多謝作者

如果想自定義動畫請繼承 ABaseTransformer 或者 BannerTransformer 即可;

setBannerTransformer(BannerLayout.ANIMATION_CUBE_IN)

或者

setBannerTransformer(new ZoomOutSlideTransformer())

動畫集合:

自定義動畫集合

         Integer: 0 ~ 17
         List<Integer> integerList = new ArrayList<>();
       
         setBannerSystemTransformerList(transformers);

系統(tǒng)動畫集合

        List<BannerTransformer> bannerTransformer = new ArrayList<>();
        
        etBannerSystemTransformerList(bannerTransformer);

java 方法

see: MethodTestActivity

    newBannerLayout
            .setDelayTime(3000)
            .setErrorImageView(R.mipmap.ic_launcher)
            .setPlaceImageView(R.mipmap.ic_launcher)
            .setDuration(3000)
            .setViewPagerTouchMode(true)
            .setVertical(true)
            .setTitleTextColor(ContextCompat.getColor(getApplicationContext(), R.color.colorPrimaryDark))
            .setTitleTextSize(23)
            .setTipsBackgroundColor(ContextCompat.getColor(getApplicationContext(), R.color.colorAccent))
            .setTipsDotsSelector(R.drawable.banner)
            .setTipsWidthAndHeight(BannerLayout.MATCH_PARENT, 300)
            .setTipsSite(BannerLayout.TOP)
            .setTitleMargin(60, 20)
            .setTitleSite(BannerLayout.LEFT)
            .setDotsWidthAndHeight(30, 30)
            .setDotsSite(BannerLayout.RIGHT)
            .setNormalRadius(2)
            .setNormalColor(ContextCompat.getColor(getApplicationContext(), R.color.colorYellow))
            .setEnabledRadius(2)
            .setEnabledColor(ContextCompat.getColor(getApplicationContext(), R.color.colorYellow))
            .setDotsMargin(60, 60)
            .setBannerTransformer(BannerLayout.ANIMATION_ZOOMOUT)
            .setBannerTransformer(new ZoomOutSlideTransformer())
            .setPageNumViewRadius(1)
            .setPageNumViewMargin(10, 10, 10, 10)
            .setPageNumViewPadding(10, 10, 10, 10)
            .setPageNumViewMargin(10)
            .setPageNumViewPadding(10)
            .setPageNumViewTextColor(ContextCompat.getColor(getApplicationContext(), R.color.colorYellow))
            .setPageNumViewBackgroundColor(ContextCompat.getColor(getApplicationContext(), R.color.colorAccent))
            .setPageNumViewSite(BannerLayout.PAGE_NUM_VIEW_BOTTOM_CENTER)
            .setPageNumViewTextSize(22)
            .setPageNumViewMark(" & ")
            .initPageNumView()
            .initTips(true, true, true)
            .setOnBannerClickListener(this)
            .addOnPageChangeListener(this)
            .initListResources(SimpleData.initModel())
            .switchBanner(true);

xml 屬性

xml default parameter see:

BannerDefaults.java

    app:banner_dots_visible="true"                              
    app:banner_page_num_radius="2"                              
    app:banner_page_num_paddingLeft="10"                        
    app:banner_page_num_paddingTop="10"                         
    app:banner_page_num_paddingRight="10"                       
    app:banner_page_num_paddingBottom="10"                      
    app:banner_page_num_marginTop="10"                          
    app:banner_page_num_marginLeft="10"                         
    app:banner_page_num_marginRight="10"                        
    app:banner_page_num_marginBottom="10"                       
    app:banner_page_num_textColor="@color/colorYellow"          
    app:banner_page_num_textSize="22sp"                         
    app:banner_page_num_BackgroundColor="@color/colorYellow"    
    app:banner_page_num_mark="@string/app_name"                 
    app:banner_pageNum_site="bottomRight"                       
    app:banner_tips_site="bottom"                               
    app:banner_dots_site="center"                               
    app:banner_title_site="center"                              
    app:banner_start_rotation="true"                            
    app:banner_title_visible="true"                             
    app:banner_title_size="10sp"                                
    app:banner_title_color="@color/colorYellow"                 
    app:banner_title_width="200"                                
    app:banner_title_height="60"                                
    app:banner_title_left_margin="60"                           
    app:banner_title_right_margin="60"                          
    app:banner_dots_left_margin="40"                            
    app:banner_dots_right_margin="40"                           
    app:banner_dots_width="30"                                  
    app:banner_dots_height="30"                                 
    app:banner_enabledRadius="2"                                
    app:banner_enabledColor="@color/colorAccent"                
    app:banner_normalRadius="2"                                 
    app:banner_normalColor="@color/colorBackground"             
    app:banner_glide_error_image="@mipmap/ic_launcher"          
    app:banner_glide_place_image="@mipmap/ic_launcher"          
    app:banner_is_tips_background="true"                        
    app:banner_tips_background="@color/colorAccent"             
    app:banner_tips_width="match_parent"                        
    app:banner_tips_height="300"                                
    app:banner_dots_selector="@drawable/banner"                 
    app:banner_start_rotation="true"                            
    app:banner_delay_time="300"                                 
    app:banner_duration="3000"                                  
    app:banner_view_pager_touch_mode="true"      

License

Copyright (C) 2016 yuebigmeow@gamil.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末盼铁,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子尝偎,更是在濱河造成了極大的恐慌饶火,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件致扯,死亡現(xiàn)場離奇詭異肤寝,居然都是意外死亡,警方通過查閱死者的電腦和手機抖僵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門鲤看,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人耍群,你說我怎么就攤上這事义桂。” “怎么了世吨?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵澡刹,是天一觀的道長。 經(jīng)常有香客問我耘婚,道長罢浇,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任沐祷,我火速辦了婚禮嚷闭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘赖临。我一直安慰自己胞锰,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布兢榨。 她就那樣靜靜地躺著嗅榕,像睡著了一般顺饮。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上凌那,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天兼雄,我揣著相機與錄音,去河邊找鬼帽蝶。 笑死赦肋,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的励稳。 我是一名探鬼主播佃乘,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼驹尼!你這毒婦竟也來了趣避?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤扶欣,失蹤者是張志新(化名)和其女友劉穎鹅巍,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體料祠,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡骆捧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了髓绽。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片敛苇。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖顺呕,靈堂內(nèi)的尸體忽然破棺而出枫攀,到底是詐尸還是另有隱情,我是刑警寧澤株茶,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布来涨,位于F島的核電站,受9級特大地震影響启盛,放射性物質(zhì)發(fā)生泄漏蹦掐。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一僵闯、第九天 我趴在偏房一處隱蔽的房頂上張望卧抗。 院中可真熱鬧,春花似錦鳖粟、人聲如沸社裆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽泳秀。三九已至标沪,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間嗜傅,已是汗流浹背谨娜。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留磺陡,地道東北人。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓漠畜,卻偏偏與公主長得像币他,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子憔狞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容