概述

仿掌上英雄联盟首页的demo

详细

首页大概分为几个部分
  • 状态栏

  • 标题栏

  • 轮播图

  • 切换的Tab

  • 资讯列表

  • 资讯列表头部推荐

  • 刷新控件

一、准备工作

用到的库:

//recyclerview列表
compile 'com.android.support:recyclerview-v7:25.0.0'
//design库,用于tablayout,CoordinatorLayout折叠布局等
compile 'com.android.support:design:25.0.0'
//一键绑定控件
compile 'com.jakewharton:butterknife:5.1.1'
compile 'com.android.support:appcompat-v7:25.0.0'
//网络请求
compile 'com.squareup.picasso:picasso:2.5.2'
//ConstraintLayout
compile 'com.android.support.constraint:constraint-layout:1.0.2'
//轮播控件
compile 'com.youth.banner:banner:1.4.9'
//刷新加载控件
compile 'com.cjj.materialrefeshlayout:library:1.3.0'
//折叠控件,解决了滚动冲突
compile 'com.github.cpoopc:scrollablelayoutlib:1.0.1'
//RecyclerViewHeader
compile 'com.bartoszlipinski:recyclerviewheader2:2.0.1'
compile 'com.sothree.slidinguppanel:library:3.3.1'

二、程序实现

工程截图:

整个页面是一个Activity,最外层是刷新控件,然后是标题栏和折叠布局ScrollableLayout。

<com.cjj.MaterialRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"> <RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"> <com.cpoopc.scrollablelayoutlib.ScrollableLayout
android:id="@+id/scrollablelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="16dp"
android:orientation="vertical"> </com.cpoopc.scrollablelayoutlib.ScrollableLayout> <include layout="@layout/title_bar" />
</RelativeLayout>
</com.cjj.MaterialRefreshLayout>

ScrollableLayout里面嵌套了轮播图、tablayout、viewpager。

  <com.cpoopc.scrollablelayoutlib.ScrollableLayout            android:id="@+id/scrollablelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="16dp"
android:orientation="vertical">
<!--header-->
<com.youth.banner.Banner android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="200dp" /> <!--置顶的部分-->
<android.support.design.widget.TabLayout android:id="@+id/tab"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/white"
app:tabIndicatorColor="@color/tab_select"
app:tabMode="scrollable"
app:tabSelectedTextColor="@color/tab_select" />
<!--滚动视图-->
<android.support.v4.view.ViewPager android:id="@+id/vp"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.cpoopc.scrollablelayoutlib.ScrollableLayout>

然后切换是通过tab和viewpager联动加载的Fragment 
Fragment中列表用的是RecyclerView,然后再给RecyclerView添加了一个Header,实现推荐功能。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"> <android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:id="@+id/fragment_lv"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:nestedScrollingEnabled="false"
android:layout_height="match_parent"/> <com.bartoszlipinski.recyclerviewheader2.RecyclerViewHeader
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_gravity=""
android:nestedScrollingEnabled="false"
android:layout_height="60dp"/>
</RelativeLayout>
</ScrollView>
创建布局需要注意的问题
  • ScrollView和RecyclerView滚动冲突,造成滑动不流畅。 
    需要在RecyclerView设置android:nestedScrollingEnabled=”false”属性,使滚动事件交给ScrollView处理。

  • 添加RecyclerViewHeader的时候,父布局只能识别RelativeLayout 、LinearLayout、和FrameLayout这三种控件。

  • ScrollableLayout子布局是固定的格式,分为三部分。

设置好布局后,进行数据的填充,先操作activty中的元素

实例化控件直接用ButterKnife一键绑定了。直接加载控件数据。

   private void initView() {        //加载轮播图数据
initBanner(); //TabLayout
initTabLayout(); //创建Fragment
initFragment(); //监听滚动状态
initOnClickScroll();
}

随便在网上找了三张图片,使用Picasso框架完成图片的加载。 
start开启轮播。 
这时候打开app就能看到效果了。 
该框架支持多种轮播样式风格,根据需要自己设置。

    /*轮播*/
private void initBanner() { //圆形指示器
header.setBannerStyle(BannerConfig.CIRCLE_INDICATOR); //指示器居中
header.setIndicatorGravity(BannerConfig.CENTER);
img.add("http://m.beequick.cn/static/bee/img/m/boot_logo-275a61e3.png");
img.add("http://m.beequick.cn/static/bee/img/m/boot_logo-275a61e3.png");
img.add("http://m.beequick.cn/static/bee/img/m/boot_logo-275a61e3.png"); header.setImageLoader(new ImageLoader() {
@Override public void displayImage(Context context, Object o, ImageView imageView) {
Picasso.with(context) .load(url) .into(imageView);
}
}); header.setImages(img); header.start();
}

然后进行tablayout的初始化

 private String[] titles = new String[]{"最新", "专栏", "官方", "活动", "攻略", "娱乐", "收藏"};    /*初始化tab标签*/
private void initTabLayout() { for (int i=0;i<titles.length;i++){
tab.addTab(tab.newTab().setText(titles[i]));
} }

上面只是装载了标签数据,通过setupWithViewPager关联viewpager

    /*初始化Fragment*/
private void initFragment() {
ScrollableFragment fragment = new ScrollableFragment();
ScrollableFragment fragment1 = new ScrollableFragment();
ScrollableFragment fragment2 = new ScrollableFragment();
ScrollableFragment fragment3 = new ScrollableFragment();
ScrollableFragment fragment4 = new ScrollableFragment();
ScrollableFragment fragment5 = new ScrollableFragment();
ScrollableFragment fragment6 = new ScrollableFragment();
fragmentList.add(fragment);
fragmentList.add(fragment1);
fragmentList.add(fragment2);
fragmentList.add(fragment3);
fragmentList.add(fragment4);
fragmentList.add(fragment5);
fragmentList.add(fragment6);
adapterVP = new ViewPagerAdapter(getSupportFragmentManager());
vp.setAdapter(adapterVP);
tab.setupWithViewPager(vp);
}

如果到这一步运行app,发现tab标签的状态或者颜色没有选中的效果,检查viewpager的adapter是否重写了getPageTitle方法

 public CharSequence getPageTitle(int position) {            return titles[position];
}
到这里已经完成了acticity的工作,但是我们还要实现标题栏渐变消失的效果。

在android中大多数跟滚动有关的控件,都有自己的滚动监听事件,来让开发者调用,以实现高级的效果。

而这里用的是ScrollableLayout控件,该控件内部也是基于ScrollView滚动,所以在内部给我们封装好了监听事件,直接调动监听方法就可以

  /*滚动监听*/
private void initOnClickScroll() {
scrollablelayout.setOnScrollListener(new ScrollableLayout.OnScrollListener() { @Override
public void onScroll(int i, int i1) { if (i >= i1) {
title.setVisibility(View.GONE);
} else {
title.setVisibility(View.VISIBLE);
} //通过距离设置渐变效果
float scale = (float) i1-i; float alpha = (255 * scale); float alpha2 = scale/i1*150; float alphaTv = scale / i1 * 255;
title.setBackgroundColor(Color.argb((int) alpha2, 0, 0, 0));
titleBarTitle.setTextColor(Color.argb((int) alphaTv, 198, 166, 102));
titleBarContent.setTextColor(Color.argb((int) alphaTv,198,166,102));
}
});
}

onScroll有两个属性,一个I是滚动的距离,是根据手势滑动的距离计算出的距离,i1是从开始滚动到header消失这之间的总距离。也就是固定的。

为了区别,这里加了标题栏的显示和隐藏,当底部滚动视图置顶的时候,也就是i=i1的时候,就把标题栏隐藏掉。

但是我们这里是需要一个渐变隐藏的效果,也就是让控件背景颜色从不透明到全透明的实时渐变的一个过程。

颜色需要用到argb,有四个参数,第一个就是透明度, 
如果需要递增则用255 * scale 
递减用scale / i1 * 255 
需要半透的话,把255再除以2。

Fragment里面需要操作的东西就少了

两行代码就实现了headerview的添加

  private void initAdapter() {
View headerView = View.inflate(getContext(), R.layout.view_header, null);
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
recyclerView.setLayoutManager(layoutManager); header.addView(headerView); header.attachTo(recyclerView);
adapter = new FragmentAdapter(data, getActivity()); //分割线
recyclerView.addItemDecoration(new DividerItemDecoration(getActivity(), DividerItemDecoration.VERTICAL));
recyclerView.setAdapter(adapter);
}

三、运行效果

四、其他补充

其实要实现这种效果的方法还有很多,比如利用Design库中的CoordinatorLayout,和AppBarLayout结合来用,也能实现折叠效果。包括GitHub也有一些开源的库可供我们选择使用,像ScrollableLayout 、ObservableScrollView这些都是非常优秀的框架。在实际项目中节省了很多开发时间。唯一的时间成本就是我们学习这些框架的时间,当熟练运用之后,这些看似复杂的东西,可能只需要短短的几分钟而已

注:本文著作权归作者,由demo大师发表,拒绝转载,转载需要作者授权

Android仿掌上英雄联盟首页,实现折叠效果的更多相关文章

  1. 利用Python爬取OPGG上英雄联盟英雄胜率及选取率信息

    一.分析网站内容 本次爬取网站为opgg,网址为:” http://www.op.gg/champion/statistics” 由网站界面可以看出,右侧有英雄的详细信息,以Garen为例,胜率为53 ...

  2. Android 仿美团网,大众点评购买框悬浮效果之修改版

    转帖请注明本文出自xiaanming的博客(http://blog.csdn.net/xiaanming/article/details/17761431),请尊重他人的辛勤劳动成果,谢谢! 我之前写 ...

  3. Android仿WIN8系统磁贴点击下沉倾斜效果

    ※效果 watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvbGluZ2xvbmd4aW4yNA==/font/5a6L5L2T/fontsize/400/fil ...

  4. android愤怒小鸟游戏、自定义View、掌上餐厅App、OpenGL自定义气泡、抖音电影滤镜效果等源码

    Android精选源码 精练的范围选择器,范围和单位可以自定义 自定义View做的小鸟游戏 android popwindow选择商品规格颜色尺寸效果源码 实现Android带有锯齿背景的优惠样式源码 ...

  5. Android 仿QQ首页的消息和电话的切换,首页的头部(完全用布局控制)

    Android 仿QQ首页的消息和电话的切换,首页的头部(完全用布局控制) 首先贴上七个控制布局代码 1.title_text_sel.xml 字体颜色的切换 放到color文件夹下面 <?xm ...

  6. Android仿微信图片上传,可以选择多张图片,缩放预览,拍照上传等

    仿照微信,朋友圈分享图片功能 .可以进行图片的多张选择,拍照添加图片,以及进行图片的预览,预览时可以进行缩放,并且可以删除选中状态的图片 .很不错的源码,大家有需要可以下载看看 . 微信 微信 微信 ...

  7. WPF实现雷达图(仿英雄联盟)

    WPF开发者QQ群: 340500857  | 微信群 -> 进入公众号主页 加入组织 前言 有小伙伴提出需要实现雷达图. 由于在WPF中没有现成的雷达图控件,所以我们自己实现一个. PS:有更 ...

  8. Android 仿今日头条频道管理(上)(GridView之间Item的移动和拖拽)

    前言 常常逛今日头条.发现它的频道管理功能做的特别赞.交互体验很好.如图: watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fo ...

  9. AJ学IOS(12)UI之UITableView学习(上)LOL英雄联盟练习

    AJ分享,必须精品 先看效果图 源代码 NYViewController的代码 #import "NYViewController.h" #import "NYHero. ...

随机推荐

  1. 【spring cloud】【IDEA】【maven】spring cloud多模块在idea上使用maven插件打包报错:程序包XXX不存在

    >>>>spring cloud 多模块 >>>>在idea上使用maven插件打包,欲打包成jar包后 进行部署 >>>> 报 ...

  2. python笔记25-mock-server之moco

    前言 mock除了用在单元测试过程中,还有一个用途,当前端开发在开发页面的时候,需要服务端提供API接口 此时服务端没开发完成,或者说没搭建测试环境,这个时候前端开发会自己mock一个api服务端,自 ...

  3. linux统计文件夹内文件数

    for dir in `find ./ -type d ` ;do echo -n "$dir "  ;find $dir  -type f | wc -l ;echo " ...

  4. 高效的数据压缩编码方式 Protobuf

    一. protocol buffers 是什么? Protocol buffers 是一种语言中立,平台无关,可扩展的序列化数据的格式,可用于通信协议,数据存储等. Protocol buffers ...

  5. 数据库实例: STOREBOOK > 用户

    ylbtech-Oracle:数据库实例: STOREBOOK  >  用户 用户 1.返回顶部 1.1, 1.2, 2. 用户列表(用户状态=OPEN)返回顶部 2.1, DBSNMP 2.2 ...

  6. Informatica 常用组件Aggregator之三 使用排序输入

    可以使用排序输入选项改善聚合转换性能.使用排序输入时,PowerCenter 会假定所有数据已按组排序.PowerCenter 读取某组的行时,它将执行聚合计算.需要时,它会将组信息存储在存储器中.要 ...

  7. web 实时通信的方法总结

    1.Web端即时通讯技术 即时通讯技术简单的说就是实现这样一种功能:服务器端可以即时地将数据的更新或变化反应到客户端,例如消息即时推送等功能都是通过这种技术实现的. 但是在Web中,由于浏览器的限制, ...

  8. python3 使用openpyxl库读写excel(续)

    官网:https://openpyxl.readthedocs.io/en/stable/

  9. SQL-查询排名

    select row_number() over(order by amount) as rank,* from dbo.t_group

  10. [Algorithm] Trie data structure

    For example we have an array of words: [car, done, try, cat, trie, do] What is the best data structu ...