view的两种实现方式

想通过一个小功能的实现来表达我对编程的一些看法
一个多列表选择框,我第一种方案用了一个自定义view逻辑全写在一个类里,一个小时内很快就搞定了
但我也清楚,会有很大一些人如果看这个代码,会觉得很乱,甚至看不懂,
甚至有些人会很生气的说 这些的什么代码啊,根本没法看。
我理解他们,所以我特意写了一个进一步拆解成不同对象来更好理解的方式
但我想说的是如果是一个对编码有感觉的话,看第一个是很容易看懂的,不是他们写的不好理解,而是另一些人太不懂和机器打交道了,我也知道面向对象的设计,但设计的粒度要多细,我觉得还是的得看跟人,不能一杆子打死,甚至有可能委屈了那些编程高手。想象一个场景,当你的领导说你的很差,要你改,你说好的,确实必须改,但你内心是一万个 ‘去你大爷的’,而且无论你怎么管理自己的表情,对方其实还是能感受到你的不服气,他会更加极端的方式羞辱你,有没有这种场景,兄弟们。
是啊,闲的蛋疼,特意写下,本人毕业不到四年就因解问题又快又好,被提升管理岗,一直上升到framwork层后,反而进了一个一般的企业后却过得异常艰难,所以人生真是充满了不确定性,在此十字路口之际,终于体会到那句话,曾经有一份真诚的爱情放在我面前,我没有珍惜。。。
不过我觉得我完全可以傍大款的生活着,躺平真就那么难吗,我的hero,你走吧根据个人对代码量的控制程度来选择两种编码方式,
第一种方式,直接在filterview里面进行点击及列表响应的处理
第二种方式,专门通过一个对象FilterObject来管理选择按钮的状态和数据

第一种方式

public class FilterView extends SkinCompatLinearLayout {public final static int searchType = 7309;public final static String[] ChargeTitle ={"Speed","Brand"};public final static String[] ChargeType ={"All","Slow","Fast"};public final static String[] ChargeBrand ={"All","EV Station Pluz","PEA Volta","Elex by EGAT","EA Anywhere","Evolt","Sharge"};//power > 50 为快充public final static String[] ChargeTypeValue ={"0","0","50"};public final static String[] ChargeBrandValue ={"","EV Station Pluz","PEA Volta","Elex by EGAT","EA Anywhere","Evolt","Sharge"};private SkinCompatTextView[] titleViews = new SkinCompatTextView[2];private final int TYPE_INDEX = 0;private final int BRAND_INDEX = 1;private SparseArray<String[]> allColums = new SparseArray();private SparseArray<String[]> allColumValues = new SparseArray();//每列对应的选中indexprivate SparseArray<Integer> selectFilter = new SparseArray();//第几列private int showRow = -1;private Context mContext;private RecyclerView recyclerView;private int selectColor = 0xff8ACB04;/private int normolColor = 0xff35383D;public interface FilterChange{void onFilterChange(String chargetype ,String brand);}FilterChange mFilterChange;public void setFilterChange(FilterChange filterChange){mFilterChange = filterChange;}public FilterView(Context context) {super(context);initdata();initView(context);}private void initdata(){allColums.put(TYPE_INDEX,ChargeType);allColums.put(BRAND_INDEX,ChargeBrand);allColumValues.put(TYPE_INDEX,ChargeTypeValue);allColumValues.put(BRAND_INDEX,ChargeBrandValue);selectFilter.put(TYPE_INDEX,0);selectFilter.put(BRAND_INDEX,0);}public FilterView(Context context, AttributeSet attrs) {super(context, attrs);initdata();initView(context);}private void initView(Context context) {mContext = context;SkinCompatLinearLayout moreView = (SkinCompatLinearLayout) LayoutInflater.from(mContext).inflate(R.layout.filterlayout, null);addView(moreView);moreView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));titleViews[TYPE_INDEX] = moreView.findViewById(R.id.filter_left);titleViews[BRAND_INDEX] = moreView.findViewById(R.id.filter_right);recyclerView = moreView.findViewById(R.id.recyclerView);titleViews[TYPE_INDEX].setOnClickListener(onClickListener);titleViews[BRAND_INDEX].setOnClickListener(onClickListener);recyclerView.setLayoutManager(new LinearLayoutManager(mContext, RecyclerView.VERTICAL, false));//freshListview();}OnClickListener onClickListener = new OnClickListener() {@Overridepublic void onClick(View v) {if(v.getId() == R.id.filter_left){showRow = TYPE_INDEX;}else if(v.getId() == R.id.filter_right){showRow = BRAND_INDEX;}freshListview();}};private void freshListview(){if (recyclerView.getVisibility() == View.VISIBLE) {recyclerView.setVisibility(View.GONE);return;}recyclerView.setVisibility(View.VISIBLE);recyclerView.setAdapter(new BaseRecyclerAdapter(mContext, Arrays.asList(allColums.get(showRow)),R.layout.charge_filter_view) {@Overridepublic void convert(MViewHolder holder, int position) {((TextView)holder.getView(R.id.filter_name)).setText(allColums.get(showRow)[position]);if(position == selectFilter.get(showRow)){((TextView)holder.getView(R.id.filter_name)).setTextColor(selectColor);((TextView)holder.getView(R.id.filter_name)).setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.charge_select),null);}else{((TextView)holder.getView(R.id.filter_name)).setTextColor(normolColor);((TextView)holder.getView(R.id.filter_name)).setCompoundDrawablesWithIntrinsicBounds(null,null,null,null);}}}.setOnItemClickListener(new BaseRecyclerAdapter.OnItemClickListener() {@Overridepublic void onItemClick(MViewHolder holder, int position) {selectFilter.put(showRow,position);recyclerView.setVisibility(View.GONE);resetTitleview();if (mFilterChange != null) {String brand = allColumValues.get(BRAND_INDEX)[selectFilter.get(BRAND_INDEX)];String chargetype = allColumValues.get(TYPE_INDEX)[selectFilter.get(TYPE_INDEX)];mFilterChange.onFilterChange(chargetype,brand);}}}));freshTitleview();}private void freshTitleview(){for(int i = 0;i<titleViews.length;i++) {if(showRow == i){titleViews[i].setTextColor(selectColor);titleViews[i].setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.charge_title_arrow_select),null);}else{titleViews[i].setTextColor(normolColor);titleViews[i].setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.icon_filterdown),null);}}}private void resetTitleview(){for(int i = 0;i<titleViews.length;i++) {titleViews[i].setTextColor(normolColor);titleViews[i].setText(allColums.get(i)[selectFilter.get(i)]);titleViews[i].setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.icon_filterdown),null);}}}
第二种,通过对象来控制两个选择框的状态和数据填充
public class FilterView extends SkinCompatLinearLayout {public final static int searchType = 7309;public final static String[] ChargeTitle ={"Speed","Brand"};public final static String[] ChargeType ={"All","Slow","Fast"};public final static String[] ChargeBrand ={"All","EV Station Pluz","PEA Volta","Elex by EGAT","EA Anywhere","Evolt","Sharge"};//power > 50 为快充public final static String[] ChargeTypeValue ={"0","0","50"};public final static String[] ChargeBrandValue ={"","EV Station Pluz","PEA Volta","Elex by EGAT","EA Anywhere","Evolt","Sharge"};private SkinCompatTextView[] titleViews = new SkinCompatTextView[2];private final int TYPE_INDEX = 0;private final int BRAND_INDEX = 1;private SparseArray<String[]> allColums = new SparseArray();private SparseArray<String[]> allColumValues = new SparseArray();//第几列private int showRow = -1;private Context mContext;private RecyclerView recyclerView;private int selectColor = 0xff8ACB04;//R.color.download_cicle_color;private int normolColor = 0xff35383D;FilterObject[] objs = new FilterObject[2];public interface FilterChange{void onFilterChange(String chargetype ,String brand);}FilterChange mFilterChange;public void setFilterChange(FilterChange filterChange){mFilterChange = filterChange;}public FilterView(Context context) {super(context);initdata();initView(context);}private void initdata(){allColums.put(TYPE_INDEX,ChargeType);allColums.put(BRAND_INDEX,ChargeBrand);allColumValues.put(TYPE_INDEX,ChargeTypeValue);allColumValues.put(BRAND_INDEX,ChargeBrandValue);}public FilterView(Context context, AttributeSet attrs) {super(context, attrs);initdata();initView(context);}private void initView(Context context) {mContext = context;SkinCompatLinearLayout moreView = (SkinCompatLinearLayout) LayoutInflater.from(mContext).inflate(R.layout.filterlayout, null);addView(moreView);moreView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));titleViews[TYPE_INDEX] = moreView.findViewById(R.id.filter_left);titleViews[BRAND_INDEX] = moreView.findViewById(R.id.filter_right);recyclerView = moreView.findViewById(R.id.recyclerView);titleViews[TYPE_INDEX].setOnClickListener(onClickListener);titleViews[BRAND_INDEX].setOnClickListener(onClickListener);recyclerView.setLayoutManager(new LinearLayoutManager(mContext, RecyclerView.VERTICAL, false));objs[BRAND_INDEX] = new FilterObject(ChargeTitle[BRAND_INDEX],ChargeBrand,ChargeBrandValue,titleViews[BRAND_INDEX],0);objs[TYPE_INDEX] = new FilterObject(ChargeTitle[TYPE_INDEX],ChargeType,ChargeTypeValue,titleViews[TYPE_INDEX],0);}OnClickListener onClickListener = new OnClickListener() {@Overridepublic void onClick(View v) {if(v.getId() == R.id.filter_left){showRow = TYPE_INDEX;}else if(v.getId() == R.id.filter_right){showRow = BRAND_INDEX;}freshListview();}};private void freshListview(){if (recyclerView.getVisibility() == View.VISIBLE) {recyclerView.setVisibility(View.GONE);return;}recyclerView.setVisibility(View.VISIBLE);recyclerView.setAdapter(new BaseRecyclerAdapter(mContext, Arrays.asList(allColums.get(showRow)),R.layout.charge_filter_view) {@Overridepublic void convert(MViewHolder holder, int position) {((TextView)holder.getView(R.id.filter_name)).setText(objs[showRow].getItemName(position));if(position == objs[showRow].selectIndex){((TextView)holder.getView(R.id.filter_name)).setTextColor(selectColor);((TextView)holder.getView(R.id.filter_name)).setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.charge_select),null);}else{((TextView)holder.getView(R.id.filter_name)).setTextColor(normolColor);((TextView)holder.getView(R.id.filter_name)).setCompoundDrawablesWithIntrinsicBounds(null,null,null,null);}}}.setOnItemClickListener(new BaseRecyclerAdapter.OnItemClickListener() {@Overridepublic void onItemClick(MViewHolder holder, int position) {objs[showRow].setSelectIndex(position);objs[showRow].setNormorState();recyclerView.setVisibility(View.GONE);if (mFilterChange != null) {mFilterChange.onFilterChange(objs[TYPE_INDEX].getSelectValue(),objs[BRAND_INDEX].getSelectValue());}}}));objs[showRow].setSelectState();}// todo use obj insteadclass FilterObject {public FilterObject(String title,String[] listShows,String[] listValues,SkinCompatTextView titleView,int selectIndex){this.title = title;this.listShows = listShows;this.listValues = listValues;this.titleView = titleView;}public String title ;public  String[] listShows ;public  String[] listValues;public SkinCompatTextView titleView ;public void setSelectIndex(int selectIndex) {this.selectIndex = selectIndex;}public String getSelectValue(){return listValues[selectIndex];}public String getItemName(int index){return listShows[index];}//第几列public int selectIndex = 0;public void setNormorState(){titleView.setTextColor(normolColor);titleView.setText(listShows[selectIndex]);titleView.setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.icon_filterdown),null);}public void setSelectState(){titleView.setTextColor(selectColor);titleView.setText(listShows[selectIndex]);titleView.setCompoundDrawablesWithIntrinsicBounds(null,null,ContextCompat.getDrawable(ContextHelper.getContext(), R.drawable.charge_title_arrow_select),null);}}}

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

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

相关文章

linux系统---selinux

目录 前言 一、SELinux 的作用及权限管理机制 1.SELinux 的作用 1.1DAC 1.2MAC 1.3DAC 和 MAC 的对比 2.SELinux 基本概念 2.1主体&#xff08;Subject&#xff09; 2.2对象&#xff08;Object&#xff09; 2.3政策和规则&#xff08;Policy & Rule&#xff09; …

强化学习中动作价值函数和状态价值函数的联系区别?

在强化学习中&#xff0c;动作价值函数&#xff08;Q函数&#xff09;和状态价值函数&#xff08;V函数&#xff09;都是值函数&#xff0c;用于评估在不同状态或状态动作对下的值。它们之间存在联系&#xff0c;但有一些区别&#xff1a; 动作价值函数&#xff08;Q函数&#…

Web自动化测试框架-PO模式

&#x1f525; 交流讨论&#xff1a;欢迎加入我们一起学习&#xff01; &#x1f525; 资源分享&#xff1a;耗时200小时精选的「软件测试」资料包 &#x1f525; 教程推荐&#xff1a;火遍全网的《软件测试》教程 &#x1f4e2;欢迎点赞 &#x1f44d; 收藏 ⭐留言 &#x1…

Python接口自动化之cookie、session应用!

以下介绍cookie、session原理及在接口自动化中的应用。 HTTP 协议是一种无状态协议&#xff0c;即每次服务端接收到客户端的请求时&#xff0c;都是一个全新的请求&#xff0c;服务器并不知道客户端的历史请求记录&#xff1b;Session 和 Cookie 的主要目的就是为了弥补 HTTP 的…

L2-002 链表去重(Java)

给定一个带整数键值的链表 L&#xff0c;你需要把其中绝对值重复的键值结点删掉。即对每个键值 K&#xff0c;只有第一个绝对值等于 K 的结点被保留。同时&#xff0c;所有被删除的结点须被保存在另一个链表上。例如给定 L 为 21→-15→-15→-7→15&#xff0c;你需要输出去重后…

对列表的元素进行验证

摘要&#xff1a;开发中经常需要校验用户提交的值是否满足要求&#xff0c;Valid可用于方法参数、返回值等的验证&#xff0c;但是对于参数为列表时无效&#xff0c;此处记录几种对列表进行验证的方法 Valid 注解通常用于验证单个对象的字段&#xff0c;而不是整个列表。仅添加…

NetSuite Mass Update 批量更新功能

NetSuite中有一个小而精的便捷功能&#xff0c;但是也是一个很容易在实践中被大家遗忘的隐藏功能&#xff0c;就是Mass Update批量更新&#xff0c;在此想和各位分享一下&#xff5e;该功能主要是可以帮助用户快速将符合固定标准的记录中的单个/多个字段直接进行批量更新。如果…

快速批量将图片变成圆角怎么弄?教你一键将图片批量加圆角

在我们日常工作中&#xff0c;在设计图片的时候会要求将直角变成圆角&#xff0c;那么为什么要这么做呢&#xff1f;首先从圆角的设计语言上来说说&#xff0c;圆角看起来很现代&#xff0c;传达给人的感觉是温和友善的&#xff0c;被广泛的应用在产品中的图标、按钮等地方。而…

旷视IPC网络摄像机RTSP地址规则

主码流&#xff1a;rtsp://10.231.20.55/live?profileProfile_0000 子码流&#xff1a;rtsp://10.231.20.55/live?profileProfile_0001 三码流&#xff1a;rtsp://10.231.20.55/live?profileProfile_0002 带用户名密码格式&#xff0c;主码流&#xff1a;rtsp://admin:pw…

OJ习题之——圆括号编码

圆括号编码 1.题目描述2.完整代码3.图例演示 1.题目描述 题目描述 令Ss1 s2 …sn是一个规则的圆括号字符串。S以2种不同形式编码&#xff1a; &#xff08;1&#xff09;用一个整数序列Pp1 p2 … pn编码&#xff0c;pi代表在S中第i个右圆括号的左圆括号数量。&#xff08;记为…

检测和处理异常之封装内建函数

​我们现在给出一个交互操作的例子 - 从最基本的错误检测开始, 然后逐步改进它, 增强代码的健壮性. 这里的问题是把一个用字符串表示的数值转换 为正确的数值表示形式, 而且在过程中要检测并处理可能的错误. float() 内建函数的基本作用是把任意一个数值类型转换为一个浮点数…

代码第二十四天-寻找旋转排序数组中的最小值Ⅱ

寻找旋转排序数组中的最小值Ⅱ 题目要求 解题思路 二分法 当遇到两个left、right两个位置值相同时候&#xff0c;可以选择将 right right-1 代码 class Solution:def findMin(self, nums: List[int]) -> int:left,right0,len(nums)-1while left<right:mid(leftright…

HarmonyOS—配置编译构建信息

在进行应用/服务的编译构建前&#xff0c;需要对工程和编译构建的Module进行设置。API Version 9、API Version 8与API Version 4~7的构建体系不同&#xff0c;因此在设置编译构建信息时也存在差异&#xff1a; API Version 9&#xff1a;需要对构建配置文件、构建脚本、应用依…

一文读懂HDMI的演变-从HDMI1.0到HDMI2.1(建议收藏)

HDMI&#xff0c;全称为&#xff08;High Definition Multimedia Interface&#xff09;高清多媒体接口&#xff0c;主要用于传输高清音视频信号。 HDMI System HDMI系统包括HDMI的source和HDMI的sink, 其中source 是源端&#xff0c;即信号的来源&#xff1b;Sink的接收端&a…

Keepalived群集

目录 一、Keepalive基础 1.1 vrrp技术 1.2 VRRP相关技术 1.3.VRRP工作过程 1.4.Keeplived、VRRP及其工作原理 1.5.Keepalived体系主要模块及其作用 1.6.配置LVSKeepalived高可用群集 配置NFS服务器192.168.52.110 192.168.52.120web1服务器 192.168.52.130web2服务器 配…

哇!!!!这个个人博客好好看!!!

做一个个人博客第一步该怎么做&#xff1f; 好多零基础的同学们不知道怎么迈出第一步。 那么&#xff0c;就找一个现成的模板学一学呗&#xff0c;毕竟我们是高贵的Ctrl c v 工程师。 但是这样也有个问题&#xff0c;那就是&#xff0c;那些模板都&#xff0c;太&#xff01;…

前端算法之归并排序

5、归并排序&#xff08;Merge Sort&#xff09; 归并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法&#xff08;Divide and Conquer&#xff09;的一个非常典型的应用。将已有序的子序列合并&#xff0c;得到完全有序的序列&#xff1b;即先使每个子序列有…

C++性能优化 —— TCMalloc的原理与使用

一、TCMalloc简介 1、TCMalloc简介 TCMalloc(Thread-Caching Malloc&#xff0c;线程缓存的malloc&#xff09;是Google开发的内存分配算法库&#xff0c;最初作为Google性能工具库 perftools 的一部分&#xff0c;提供高效的多线程内存管理实现&#xff0c;用于替代操作系统…

基于AFDPF主动频率偏移法的孤岛检测Simulink仿真

目录 1.课题概述 2.系统仿真结果 3.核心程序与模型 4.系统原理简介 5.完整工程文件 1.课题概述 基于AFDPF主动频率偏移法的孤岛检测Simulink仿真。 2.系统仿真结果 3.核心程序与模型 版本&#xff1a;MATLAB2022a 36 4.系统原理简介 在分布式发电系统中&#xff0c;孤…

express基础

express express介绍 官网传送门基于 Node.js 平台&#xff0c;快速、开放、极简的 Web 开发框架express特点 Web 应用 Express 是一个基于 Node.js 平台的极简、灵活的 web 应用开发框架&#xff0c;它提供一系列强大的特性&#xff0c;帮助你创建各种 Web 和移动设备应用。…