TextView Button 设置圆角背景

来源:互联网 发布:凯文马丁nba2k隐藏数据 编辑:程序博客网 时间:2024/05/22 17:39



/** * * @param tvGmTimeType * @param textBackColor * @param roundRadius 圆角半径 */public static void setTextBackColor(TextView tvGmTimeType, int textBackColor, int roundRadius) {//int roundRadius = 15; // 8dp//int fillColor = Color.parseColor();//内部填充颜色GradientDrawable gd = new GradientDrawable();//创建drawablegd.setColor(textBackColor);gd.setCornerRadius(roundRadius);tvGmTimeType.setBackgroundDrawable(gd);}



阅读全文
0 0
原创粉丝点击