Android-多个tv_item_[i] 点击事件简写

private TextView[] tvConstellations = new TextView[12];

//获取当前id元素并在其点击的时候修改其颜色
for (int i = 0; i < 12; i++) {
            int resId = getResources().getIdentifier("tv_constellation_" + (i+1), "id", getPackageName());
            tvConstellations[i] = findViewById(resId);
            final int j = i;
            tvConstellations[i].setOnClickListener(new View.OnClickListener() {
                
                @Override
                public void onClick(View v) {
                    int color = tvConstellations[j].getCurrentTextColor(); // 获取 TextView 的实际颜色值
                    int targetColor = ContextCompat.getColor(getApplicationContext(), R.color.color_ff7804); // 获取目标颜色的实际值
                    if (color == targetColor) {
                        tvConstellations[j].setTextColor(getResources().getColor(R.color.color_66625e));
                        tvConstellations[j].setBackgroundResource(R.drawable.service_item_background);
                        constellationArr.removeAll(Collections.singleton((j+1)+""));
                    }else{
                        tvConstellations[j].setTextColor(getResources().getColor(R.color.color_ff7804));
                        tvConstellations[j].setBackgroundResource(R.drawable.service_item_selected);
                        constellationArr.add((j+1)+"");
                    }
                }
            });
        }

//获取当前按钮颜色,点击的时候修改其颜色

case R.id.tv_sex_male:{ //男
                int colorMale = tv_sex_male.getCurrentTextColor(); // 获取 TextView 的实际颜色值
                int targetColor = ContextCompat.getColor(getApplicationContext(), R.color.color_ff7804); // 获取目标颜色的实际值
                if (colorMale == targetColor) {
                    tv_sex_male.setTextColor(getResources().getColor(R.color.color_66625e));
                    tv_sex_male.setBackgroundResource(R.drawable.service_item_background);
                    reqServicePerson.setSex("");
                }else{
                    tv_sex_male.setTextColor(getResources().getColor(R.color.color_ff7804));
                    tv_sex_male.setBackgroundResource(R.drawable.service_item_selected);
                    reqServicePerson.setSex("0");
                }
                tv_sex_female.setTextColor(getResources().getColor(R.color.color_66625e));
                tv_sex_female.setBackgroundResource(R.drawable.service_item_background);
                break;
            }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值