android 二级 滚动,android使用 ScrollerView 实现 可上下滚动的分类栏实例

如果不考虑更深层的性能问题,我个人认为ScrollerView还是很好用的。而且单用ScrollerView就可以实现分类型的RecyclerView或ListView所能实现的效果。

下面我单单从效果展示方面考虑,使用ScrollerView实现如下图所示的可滚动的多条目分类,只是为了跟大家一起分享一下新思路。(平时:若从复用性等方面考虑,这显然是存在瑕疵的~)

15059064281.gif

特点描述:

1.可上下滚动

2.有类似于网格布局的样式

3.子条目具有点击事件

刚看到这个效果时,首先想到的是使用分类型的RecyclerView 或者 ListView  ,里面再嵌套GridView来实现。

但转而又一想ScrollerView也可以滚动,只要往里面循环添加子item不就可以了吗。

实现的逻辑大致如下:

31875459e532b69d717f083338f65d3d.png

c743eed40446a1b4a7896c7464c942dd.png

具体的实现如下:

第一步:布局里写一个ScrollerView,里面添加一个竖直的线性布局

第二步:实例化垂直线性布局

allhonor_hscroll = (LinearLayout) findViewById(R.id.allhonor_hscroll);

第三步:联网请求获取数据

setAllHonorData();

/**

* 使用okhttp

*/

public void setAllHonorData() {

OkHttpUtils

.get()

.url(url)

.build()

.execute(new StringCallback() {

@Override

public void onError(okhttp3.Call call,Exception e,int id) {

Log.e("TAG","111");

Log.e("TAG","onError" + e.getMessage());

}

@Override

public void onResponse(String response,"222");

Log.e("TAG","onRespons" + response);

//联网成功后使用fastjson来解析数据

processData(response);

}

@Override

public void onBefore(Request request,int id) {

}

@Override

public void onAfter(int id) {

}

});

}

/**

* 使用fastjson进行解析

*

* @param json

*/

private void processData(String json) {

//使用GsonFormat生成对应的bean类

com.alibaba.fastjson.JSONObject jsonObject = JSON.parSEObject(json);

String data = jsonObject.getString("data");

List hornorsList = JSON.parseArray(data,AllHonorBean.HornorBean.class);

//测试是否解析数据成功

// String strTest = hornorsList.get(0).getRegion();

// Log.e("TAG",strTest);

//第四步:装配数据,使用两层for循环

}

第四步:设置两种item的布局

第一种item布局:item_allhornors0.xml

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="#ffffff"

android:orientation="vertical">

android:id="@+id/tv_allhornors_big"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="#11000000"

android:gravity="center_vertical"

android:paddingBottom="12dp"

android:paddingLeft="13dp"

android:paddingTop="12dp"

android:text="热门"

android:textColor="#000000"

android:textSize="14sp" />

android:layout_width="match_parent"

android:layout_height="1dp"

android:background="#11000000" />

第二种item布局:item_allhornors1.xml

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="#ffffff"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:id="@+id/tv_allhornors_sn0"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:clickable="true"

android:gravity="center"

android:paddingBottom="12sp"

android:paddingTop="12sp"

android:text="你好你好"

android:textColor="#000000"

android:textSize="13sp" />

android:layout_width="1dp"

android:layout_height="match_parent"

android:background="#11000000" />

android:id="@+id/tv_allhornors_sn1"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:clickable="true"

android:gravity="center"

android:paddingBottom="12sp"

android:paddingTop="12sp"

android:text=""

android:textColor="#000000"

android:textSize="13sp" />

android:layout_width="match_parent"

android:layout_height="1dp"

android:background="#11000000" />

第五步:装配数据

if (hornorsList != null && hornorsList.size() > 0) {

//-->外层

for (int i = 0; i < hornorsList.size(); i++) {

//创建并添加第一种item布局

View globalView = View.inflate(this,R.layout.item_allhornors0,null);

TextView tv_allhornors_big = (TextView) globalView.findViewById(R.id.tv_allhornors_big);

AllHonorBean.HornorBean hornorsListBean = hornorsList.get(i);

String region = hornorsListBean.getRegion();

//外层for中直接装配数据

tv_allhornors_big.setText(region);

//将布局添加进去

allhonor_hscroll.addView(globalView);

List festivalsList = hornorsListBean.getFestivals();

//-->内层,每次装两个数据

for (int j = 0; j < festivalsList.size(); j = j + 2) {

//创建并添加第二种item布局

View smallView = View.inflate(this,R.layout.item_allhornors1,null);

final TextView tv_sn0 = (TextView) smallView.findViewById(R.id.tv_allhornors_sn0);

TextView tv_sn1 = (TextView) smallView.findViewById(R.id.tv_allhornors_sn1);

//顺带在这里就直接添加点击事件的监听

if (j < festivalsList.size() - 1) {

setListener(tv_sn0,tv_sn1);

}

//装配左边的数据

honorName0 = festivalsList.get(j).getFestivalName();

tv_sn0.setText(honorName0);

//判读越界否

if (j < festivalsList.size() - 1) {

//装配右边的数据

honorName1 = festivalsList.get(j + 1).getFestivalName();

tv_sn1.setText(honorName1);

}

//添加进去

allhonor_hscroll.addView(smallView);

}

}

}

点击事件的监听:

private void setListener(final TextView tv_sn0,final TextView tv_sn1) {

//给左边的TextView 设置监听

tv_sn0.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

Toast.makeText(MainActivity.this,"" + tv_sn0.getText(),Toast.LENGTH_SHORT).show();

}

});

//给右边的TextView 设置监听

tv_sn1.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

Toast.makeText(MainActivity.this,"" + tv_sn1.getText(),Toast.LENGTH_SHORT).show();

}

});

}

完成~

再看一眼最后效果:

15059064281.gif

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

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

小编个人微信号 jb51ccc

喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值