码迷,mamicode.com
首页 > 移动开发 > 详细

Android RadioButton代码去掉左边默认显示的圆圈

时间:2016-05-04 10:24:40      阅读:778      评论:0      收藏:0      [点我收藏+]

标签:

Drawable drawable = context.getResources().getDrawable(
R.drawable.radiobg);
drawable.setBounds(0, 0,
drawable.getIntrinsicWidth(),
drawable.getIntrinsicHeight());
RadioButton radioButton=new RadioButton(context);
radioButton.setButtonDrawable(android.R.color.transparent);
radioButton.setTextSize(16);
radioButton.setTextColor(Color.parseColor("#393939"));
radioButton.setCompoundDrawables(null,null,drawable,null);
radioButton.setText(deliverytime.getName());
 
这样就可以写成自己需要的样式
 
http://blog.163.com/keep_run/blog/static/205557036201322724120140/

Android RadioButton代码去掉左边默认显示的圆圈

标签:

原文地址:http://www.cnblogs.com/Jingerxin/p/5457252.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!