<RadioButton android:id="@+id/british_stock" android:layout_width="wrap_content" android:layout_height="match_parent" android:button="@null" 将button 设置为@null 即可,方便快捷! android:gravity="center" android:paddingLeft="10dp" android:paddingRight="10dp" android:textColor="@color/c_theme_title_text" android:textSize="15sp" android:text="英股" />//还有一种就是用代码这样创建RedioButton ,这样出来也不会有小圆点RadioButton rb = (RadioButton) LayoutInflater.from(getActivity()).inflate(R.layout.nav_radiogroup_item, null); rb.setId(i); rb.setText(listData.get(i)); rb.setTextSize(17); ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(indicatorWidth, ViewGroup.LayoutParams.MATCH_PARENT); rb.setLayoutParams(params); rg_nav_content.addView(rb);
RadioButton去掉默认样式小圆点
原创
©著作权归作者所有:来自51CTO博客作者mp624183768的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
有趣的css - 渐变式圆点加载动画
用 css3 模拟一个渐变式圆点加载效果。
css 动效设计 交互设计 加载动画 用户体验