博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android RadioGroup的RadioButton 选择改变字体颜色和背景颜色
阅读量:6807 次
发布时间:2019-06-26

本文共 902 字,大约阅读时间需要 3 分钟。

RadioGroup

radiobutton字体颜色改变color_radiobutton.xml

radiobutton背景颜色改变radio_group_selector.xml

color.xml

#000000
#e0301e
#e7e7e8
#ffffff
#000000

Activity

clientRadioGroup = (RadioGroup) findViewById(R.id.client_charge_radiogroup);        clientRadioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {                        @Override            public void onCheckedChanged(RadioGroup group, int checkedId) {                int radioButtonId = group.getCheckedRadioButtonId();                RadioButton rb = (RadioButton)findViewById(radioButtonId);                String radioButtonLabel = rb.getText().toString();            }        });

 

转载地址:http://cftwl.baihongyu.com/

你可能感兴趣的文章
Linux使用信号量监控程序异常退出
查看>>
Raspberry PI 上手记
查看>>
集合框架(数据结构之栈和队列)
查看>>
集合框架(Collection存储字符串并遍历)
查看>>
精通Hyperledger之Hyperledger composer建模语言(15)
查看>>
keySet和entrySet效率比较
查看>>
emacs 安装指引
查看>>
关于PS中切图的保存
查看>>
LAMP(Linux+Apachd+Mysql+Php)搭建网站环境
查看>>
整理Oracle日期时间函数
查看>>
php错误1
查看>>
Itil v3 process model
查看>>
eNSP 华为模拟器更新说明
查看>>
Android屏幕尺寸(来自网络整理)
查看>>
我的友情链接
查看>>
CCIE学习笔记 2---BGP选路(属性值)
查看>>
运维自动化工具总览
查看>>
我的友情链接
查看>>
进程、线程、协程基本概念理解
查看>>
【中级篇】Linux下搭建MySQL数据库系统
查看>>