Android recycleview实现混合itemview,以及recycleview添加头部尾部

需要引入的module链接:https://pan.baidu.com/s/1kcVye2vT4M0mdCtzYpUVKw

添加module方法步骤:https://blog.csdn.net/meixi_android/article/details/84655666

1、主要adapter

/*** 作者:created by meixi* 邮箱:13164716840@163.com* 日期:2018/8/31 11*/public class NewsAdapter extends BaseMultiItemQuickAdapter<TestEntity, BaseViewHolder> {public NewsAdapter(@Nullable List<TestEntity> data) {super(data);addItemType(TestEntity.style_0, R.layout.item_add_groups_number);//头部itemaddItemType(TestEntity.style_1, R.layout.item_news_1);//混合1itemaddItemType(TestEntity.style_2, R.layout.item_news_2);//混合2item}@Overrideprotected void convert(BaseViewHolder helper, TestEntity item) {switch (helper.getItemViewType()) {case TestEntity.style_0:helper.setText(R.id.item_company_member_name, item.getOnes());//标题
//                initConvenientBanner((ConvenientBanner) helper.getView(R.id.bannerNews), item.getBanner());break;case TestEntity.style_1:case TestEntity.style_2:
//                helper.setImageUrl(R.id.iv, item.getContent());
//                ImageManager.loadRoundCornerImageWithMargin(mContext, item.getImg(), R.drawable.list_img, (ImageView) helper.getView(R.id.item_gank_image), 0);//dahelper.setText(R.id.item_gank_desc, item.getTitle());//标题//                helper.setText(R.id.item_read, "阅读" + String.valueOf(item.getBrowse() + item.getRandomBrowse()));break;}}
}

2、entity类

public class TestEntity implements Serializable, MultiItemEntity {private String title;private String https;private String ones;private boolean ifshow;private int itemType;public static final int style_0 = 0;public static final int style_1 = 1;public static final int style_2 = 2;//重要参数public String getOnes() {return ones;}public void setOnes(String ones) {this.ones = ones;}public int getItemType() {return itemType;}public void setItemType(int itemType) {this.itemType = itemType;}public boolean isIfshow() {return ifshow;}public void setIfshow(boolean ifshow) {this.ifshow = ifshow;}public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public String getHttps() {return https;}public void setHttps(String https) {this.https = https;}
}

 

public class ShareRecylerViewAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> implements Handler.Callback{private List<ShareListItemInEntity> listEntity;private Context context;private LayoutInflater inflater;private ListOnItemListener onItemListener;private ShotOnClickListener onShotListener;private Handler handler;public void setOnItemListener(ListOnItemListener onItemListener){this.onItemListener = onItemListener;}public void setOnShotListener(ShotOnClickListener onShotListener){this.onShotListener = onShotListener;}public ShareRecylerViewAdapter(Context context, List<ShareListItemInEntity> entitys) {this.context = context;this.listEntity = entitys;inflater =LayoutInflater.from(context);handler = new Handler(Looper.getMainLooper(), this);}@Overridepublic int getItemViewType(int position) {//item类型方法if (listEntity.get(position).getType() == SharePlatformType.DIRECT_SHARE_PLAT) {return SharePlatformType.DIRECT_SHARE_PLAT;} else if (listEntity.get(position).getType() == SharePlatformType.TITLE_SHARE_PLAT) {return SharePlatformType.TITLE_SHARE_PLAT;} else  {return SharePlatformType.FOREIGN_SHARE_PLAT;}}@Overridepublic RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {//itemlayout加载final View view;if (viewType == SharePlatformType.DIRECT_SHARE_PLAT) {view = inflater.inflate(R.layout.layout_share_yanshi_item,parent,false);return new ShareViewHolder(view);//绑定数据} else if (viewType == SharePlatformType.TITLE_SHARE_PLAT) {view = inflater.inflate(R.layout.share_title_content,parent,false);return new ShareViewHolderTitle(view);} else {view = inflater.inflate(R.layout.share_content_text,parent,false);return new ShareViewHolderContext(view);}}@Overridepublic void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {//绑定事件if(holder instanceof ShareViewHolderTitle){ShareViewHolderTitle viewHolderTitle = (ShareViewHolderTitle)holder;viewHolderTitle.setData(position);}if(holder instanceof ShareViewHolder){ShareViewHolder shareViewHolder = (ShareViewHolder)holder;shareViewHolder.shareSelected.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {
//             onOneKeyShare();}});shareViewHolder.shotSelected.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {onShotListener.onClick();}});shareViewHolder.sharkSelected.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {onShotListener.onSharkClick();}});}if(holder instanceof ShareViewHolderContext){final ShareViewHolderContext viewHolderContext = (ShareViewHolderContext)holder;viewHolderContext.setData(position);viewHolderContext.layout.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {onItemListener.onClick(viewHolderContext.itemView,viewHolderContext.getLayoutPosition());}});}}private void showToast(String text){Toast.makeText(context, text, Toast.LENGTH_SHORT).show();}@Overridepublic int getItemCount() {return listEntity.size();}@Overridepublic boolean handleMessage(Message msg) {String toastMsg = (String) msg.obj;showToast(toastMsg);return false;}class ShareViewHolder extends RecyclerView.ViewHolder {public ImageView shareSelected;public ImageView shotSelected;public ImageView sharkSelected;public ShareViewHolder(View itemView) {super(itemView);shareSelected =(ImageView) itemView.findViewById(R.id.mSelected);shotSelected = (ImageView) itemView.findViewById(R.id.mShot);sharkSelected = (ImageView) itemView.findViewById(R.id.mShark);}}class ShareViewHolderTitle extends RecyclerView.ViewHolder {public TextView textView;public ShareViewHolderTitle(View itemView) {super(itemView);textView =(TextView) itemView.findViewById(R.id.titleTxt);}public void setData(int position){textView.setText(listEntity.get(position).getName());}}class ShareViewHolderContext extends RecyclerView.ViewHolder {public ImageView icon;public TextView name;public RelativeLayout layout;public ShareViewHolderContext(View itemView) {super(itemView);icon = (ImageView)itemView.findViewById(R.id.mIcon);name = (TextView)itemView.findViewById(R.id.mTitle);layout = (RelativeLayout) itemView.findViewById(R.id.onMainLayout);}public void setData(int postion){name.setText(listEntity.get(postion).getName());icon.setImageResource(listEntity.get(postion).getIcon());}}public interface ListOnItemListener{public void onClick(View view,int position);}public interface ShotOnClickListener{public void onClick();public void onSharkClick();}
}

 

3、MainActivity调用recycleview

初始化

private List<TestEntity> testEntities = new ArrayList<>();
private RecyclerView recyclerView;
private NewsAdapter mNewsAdapter;
recyclerView = (RecyclerView)findViewById(R.id.myrecyclerview);
mNewsAdapter = new NewsAdapter(testEntities);
mNewsAdapter.setOnItemClickListener(new BaseQuickAdapter.OnItemClickListener() {@Overridepublic void onItemClick(BaseQuickAdapter adapter, View view, int position) {Toast.makeText(MainActivity.this,position+"nnnn",Toast.LENGTH_LONG).show();}
});
recyclerView.setAdapter(mNewsAdapter);

赋值

         for (int i=0;i<29;i++){TestEntity testEntity = new TestEntity();if (i%4==0&&i!=0){testEntity.setItemType(2);}else {testEntity.setItemType(1);}if (i==0){testEntity.setItemType(0);testEntity.setHttps("baidu.com");testEntity.setTitle("百度。com");testEntity.setOnes("头部");}if (i==28){testEntity.setItemType(0);testEntity.setHttps("baidu.com");testEntity.setTitle("百度。com");testEntity.setOnes("尾部");}testEntity.setHttps("baidu.com");testEntity.setTitle("百度。com");testEntities.add(testEntity);if (i==28){
//                 newgroupsAdapter.notifyDataSetChanged();mNewsAdapter.notifyLoadMoreToLoading();}}

 

头部与尾部item_add_groups_number.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:melove="http://schemas.android.com/apk/res-auto"android:orientation="vertical"android:layout_width="wrap_content"android:layout_height="wrap_content"><RelativeLayoutandroid:id="@+id/item_company_member_layout"android:layout_width="match_parent"android:layout_height="90dp"><ImageViewandroid:id="@+id/item_information_choose_image"android:layout_width="15dp"android:layout_height="15dp"android:layout_alignParentRight="true"android:layout_marginRight="12dp"android:src="@drawable/ic_launcher_background"android:visibility="invisible"/><ImageViewandroid:id="@+id/item_company_member_head_image"android:layout_width="44dp"android:layout_height="44dp"android:layout_below="@+id/item_information_choose_image"android:layout_centerHorizontal="true"android:scaleType="centerCrop"android:visibility="gone"android:src="@drawable/ic_launcher_background"/><TextViewandroid:id="@+id/item_company_member_name"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_marginTop="8dp"android:layout_below="@+id/item_company_member_head_image"android:background="@color/colorPrimary"android:layout_centerHorizontal="true"android:text="林晓"android:gravity="center"android:textSize="18sp"/></RelativeLayout></LinearLayout>

混合1   item_news_1.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:melove="http://schemas.android.com/apk/res-auto"xmlns:app="http://schemas.android.com/apk/res-auto"android:id="@+id/holder_reward_layout"android:layout_width="match_parent"android:layout_height="98dp"android:orientation="vertical"><!--android:background="?attr/selectableItemBackground"--><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:layout_weight="6"android:gravity="center_vertical"android:orientation="horizontal"><FrameLayoutandroid:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="4"android:orientation="vertical"><TextViewandroid:id="@+id/item_gank_desc"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="5dp"android:layout_marginRight="10dp"android:layout_marginTop="4dp"android:ellipsize="end"android:maxLines="2"android:text="资讯"android:textColor="#323232"android:textSize="15dp"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:layout_gravity="bottom"android:layout_marginBottom="10dp"android:orientation="horizontal"><TextViewandroid:id="@+id/item_gank_who"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentLeft="true"android:layout_gravity="center_vertical"android:layout_marginLeft="5dp"android:ellipsize="end"android:maxLength="6"android:text="name"android:textColor="#aeaeae"android:textSize="12.5sp"/><LinearLayoutandroid:layout_width="2dp"android:layout_height="match_parent"android:layout_marginLeft="2dp"android:layout_marginTop="3dp"android:layout_marginBottom="2dp"></LinearLayout><TextViewandroid:id="@+id/item_gank_createdAt"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:text="2017年12月"android:textColor="#aeaeae"android:textSize="12.5sp"android:layout_marginLeft="3dp"/><LinearLayoutandroid:layout_width="2dp"android:layout_height="match_parent"android:layout_marginLeft="3dp"android:layout_marginTop="3dp"android:layout_marginBottom="2dp"></LinearLayout><TextViewandroid:id="@+id/item_read"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:text="name"android:textColor="#aeaeae"android:layout_marginLeft="3dp"android:textSize="12.5sp"/></LinearLayout></FrameLayout><ImageViewandroid:id="@+id/item_gank_image"android:layout_width="0dp"android:layout_height="85dp"android:layout_weight="2"android:src="@drawable/ic_launcher_background"android:scaleType="centerCrop"/></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="3dp" /></LinearLayout>

混合2   item_news_2.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:melove="http://schemas.android.com/apk/res-auto"xmlns:app="http://schemas.android.com/apk/res-auto"android:id="@+id/holder_reward_layout"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><ImageViewandroid:id="@+id/item_gank_image"android:layout_width="match_parent"android:layout_height="165dp"android:layout_weight="2"android:scaleType="centerCrop"android:layout_alignParentTop="true"android:src="@drawable/ic_launcher_background"android:layout_alignParentLeft="true"android:layout_alignParentStart="true"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="50dp"android:layout_gravity="bottom"android:layout_weight="4"android:layout_alignBottom="@+id/item_gank_image"android:orientation="vertical"><TextViewandroid:id="@+id/item_gank_desc"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="5dp"android:layout_marginRight="10dp"android:layout_marginTop="4dp"android:ellipsize="end"android:maxLines="1"android:text="资讯"android:textSize="15dp"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="horizontal"><TextViewandroid:id="@+id/item_gank_createdAt"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:layout_marginLeft="8dp"android:layout_marginTop="2dp"android:text="2017年12月"android:textSize="13sp"/><TextViewandroid:id="@+id/item_gank_who"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:layout_marginLeft="5dp"android:layout_marginTop="2dp"android:text="name"android:textSize="13sp"/><TextViewandroid:id="@+id/item_read"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:layout_marginLeft="5dp"android:layout_marginTop="2dp"android:text="name"android:textSize="13sp"/></LinearLayout></LinearLayout><!--</android.support.v7.widget.CardView>--></RelativeLayout>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415287.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

工作170:删除做个判断操作 成功删除 取消取消

this.$confirm(你正在进行删除操作, 提示, {confirmButtonText: 确定,cancelButtonText: 取消,type: warning}).then((res)>{deleteAction(path.join(this.url.delete, record.id))this.$message.success(res);}).catch((err)>{this.$message.warning(err);})

docker 报错 Container is not running

我在运行docker exec -it 56b90db5253e /bin/bash报错。 出现这个问题&#xff0c;是因为Container容器之前已经启动过了 需要执行docker start 56b90db5253e就可以解决了。

Android侧滑删除-RecyclerView轻松实现高效的侧滑菜单

1 删除整个RecyclerView hisList.clear(); hisAdapter.notifyDataSetChanged(); mScanListAdapter.setNewData(null); 刚开始只是使用了list.clear() 方法就是没有效果&#xff0c;最后想起来了忘记了notifyDataSetChanged 刷新了 2 RecyclerView 删除Item hisList.remov…

返回数组中的最大数 -freeCodeCamp

找出多个数组中的最大数 右边大数组中包含了4个小数组&#xff0c;分别找到每个小数组中的最大值&#xff0c;然后把它们串联起来&#xff0c;形成一个新数组。 给出的数组如下&#xff1a; largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 85…

前端学习(2645):懂代码之header表头页之未读消息

<!-- 消息中心 --><div class"btn-bell"><el-tooltipeffect"dark":content"message?有${message}条未读消息:消息中心"placement"bottom"><router-link to"/tabs"><i class"el-icon-bell&…

cesium事件简单全面描述

我在开发中&#xff0c;需要一个功能&#xff0c;时时获取经纬度和相机角度。需要对cesium中对事件实现监听。 cesium事件主要几大类类型&#xff1a; 1、鼠标事件&#xff1a;ScreenSpaceEventType 2、键盘事件&#xff1a;KeyboardEventModifier 3、相机事件&#xff1a;Ca…

HTML标签总结

一、文字1.标题文字 <h#>..........</h#> #1~6&#xff1b;h1为最大字&#xff0c;h6为最小字2.字体变化 <font>..........</font> 【1】字体大小 <font size#>..........</font> #1~7&#xff1b;数字愈大字也愈大 【2】指定字型 <fon…

Android 取消返回键返回事件,返回桌面,再按一次退出程序,双击事件

mainactivity返回桌面代码&#xff1a; activity下添加如下代码即可: Override public void onBackPressed() {Intent home new Intent(Intent.ACTION_MAIN);home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);home.addCategory(Intent.CATEGORY_HOME);startActivity(home);} …

js cesium 中弧度、角度转化

参考如下代码&#xff1a; const { heading, pitch, roll } viewer.camera; console.log({ heading, pitch, roll }); // 弧度 const radians Cesium.Math.toRadians(heading) console.log(radians) // 角度 const degrees radians * (180 / Math.PI); console.log(degrees…

一个jdbc connection连接对应一个事务

Spring保证在methodB方法中所有的调用都获得到一个相同的连接。在调用methodB时&#xff0c;没有一个存在的事务&#xff0c;所以获得一个新的连接&#xff0c;开启了一个新的事务。 Spring保证在methodB方法中所有的调用都获得到一个相同的连接。在调用methodB时&#xff0c;没…

工作173:一级控制二级菜单的变化

1第一步 组件封装 利用$emit触发 触发结束 页面进行渲染 <!--封装部门选择的插件 需要的组件 子组件--> <template><el-select :value"value" placeholder"请选择所属部门" change"handleChange"><el-optionv-for&quo…

cesium根据输入高度设置相机camera视角高度

核心代码&#xff1a; camera.setView({destination: Cesium.Cartesian3.fromRadians(viewer.camera.positionCartographic.longitude, viewer.camera.positionCartographic.latitude, n.height),orientation: {heading: Cesium.Math.toRadians(n.heading),pitch: Cesium.Math…

RecyclerView跳转到指定位置,RecyclerView上下滑动监听,RecyclerView滑动速度

1、RecyclerView跳转到指定位置 只需调用recycleview的置顶方法&#xff1a; recyclerView.scrollToPosition(15); 如果你需要让第15item在屏幕居中&#xff0c;只需吧scrollToPosition参数变小即可: 如&#xff1a; recyclerView.scrollToPosition(12);或 recyclerView.…

工作169:vue项目报错[Vue warn]: Property “visible“ must be accessed with “$data.visible“ because properties

vue项目中报错&#xff1a; [Vue warn]: Property "visible" must be accessed with "$data.visible" because properties starting with "$" or "_" are not proxied in the Vue instance to prevent conflicts with Vue internalsS…

Python 开篇及第一个Python程序

本节内容 python 简单介绍python 2.x 或者python 3.xpython 安装第一个python程序一、python简单介绍 python的创始人为吉多.范罗苏姆(Guido van Rossum)。1989年的圣诞节期间&#xff0c;吉多.范罗苏姆为了在阿姆斯特丹打发时间&#xff0c;决心开发一个新的脚本解释程序&…

cesium进行模型高度测量的代码片段

主要参考 https://sandcastle.cesium.com/index.html?srcPicking.html export function monitorMove() {const viewer window.viewer;const scene viewer.scene;const handler new Cesium.ScreenSpaceEventHandler(scene.canvas);let previousPickedEntity undefined;var…

工作171:阅读账号里面的新增调用接口操作

第一步 点击新增操作 第二步 找到当前组件下面的 add的方法 第三步 找到子组件下面的混入方法

recycleview 使用详解,添加头部尾部,混合item,侧滑菜单,跳转到指定位置,实现九宫格布局

添加头部尾部&#xff0c;混合item&#xff1a;https://blog.csdn.net/meixi_android/article/details/82256319 侧滑菜单&#xff1a;https://blog.csdn.net/meixi_android/article/details/82344439 实现九宫格布局&#xff1a;https://blog.csdn.net/meixi_android/articl…

PHP输入流 php://input 相关【转】

为什么xml_rpc服务端读取数据都是通过file_get_contents(‘php://input, ‘r)。而不是从$_POST中读取&#xff0c;正是因为xml_rpc数据规格是xml&#xff0c;它的Content-Type是text/xml。php://input碰到了multipart/form-data在使用xml-rpc的时候&#xff0c;server端获取cli…