还在为 textview以及button 的各种样式而烦恼的童鞋们请往这里看~~~~

一次性解决 textview以及button的样式,再也不用写xml了!!!

全部动态预设置,拒绝堆代码,拒绝xml...

支持的样式如下

  private int backColor = 0;//背景色
private int backColorSelected = 0;//按下后的背景色
private int backGroundImage = 0;//背景图
private int backGroundImageSeleted = 0;//按下后的背景图
private int textColor = Color.BLACK;//文字颜色
private int textColorSeleted = 0;//按下后的文字颜色
private float radius = 8;//圆角半径
private int shape = 0;//圆角样式,矩形、圆形等,由于矩形的Id为0,默认为矩形
private Boolean fillet = false;//是否设置圆角
private int strokeWidth = 1;//边框宽度
private int strokeColor = Color.TRANSPARENT;//边框颜色

  

自定义属性:

<declare-styleable name="GCButton">
<attr name="backColors" format="color"/>
<attr name="backColorSelected" format="color"/>
<attr name="backGroundImage" format="reference"/>
<attr name="backGroundImageSeleted" format="reference"/>
<attr name="textColorSeleted" format="color"/>
<attr name="radius" format="dimension"/>
<attr name="shape">
<enum name="RECTANGLE" value="0"/>
<enum name="OVAL" value="1"/>
<enum name="LINE" value="2"/>
<enum name="RING" value="3"/>
</attr>
<attr name="fillet" format="boolean"/>
<attr name="strokeWidth" format="dimension"/>
<attr name="strokeColor" format="color"/>
</declare-styleable>

  完整源码:

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button; @SuppressLint("AppCompatCustomView")
public class GCButton extends Button {
private Context mContext;
private GradientDrawable gradientDrawable;
private int backColor = 0;//背景色
private int backColorSelected = 0;//按下后的背景色
private int backGroundImage = 0;//背景图
private int backGroundImageSeleted = 0;//按下后的背景图
private int textColor = Color.BLACK;//文字颜色
private int textColorSeleted = 0;//按下后的文字颜色
private float radius = 8;//圆角半径
private int shape = 0;//圆角样式,矩形、圆形等,由于矩形的Id为0,默认为矩形
private Boolean fillet = false;//是否设置圆角
private int strokeWidth = 1;//边框宽度
private int strokeColor = Color.TRANSPARENT;//边框颜色 public GCButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.mContext = context;
init();
initAttrs(attrs);
} public GCButton(Context context, AttributeSet attrs) {
this(context, attrs, 0);
} public GCButton(Context context) {
this(context, null);
} private void initAttrs(AttributeSet attrs) {
TypedArray a = mContext.obtainStyledAttributes(attrs, R.styleable.GCButton);
setStroke(a.getDimensionPixelSize(R.styleable.GCButton_strokeWidth, strokeWidth), a.getColor(R.styleable
.GCButton_strokeColor, strokeColor));
setBackColor(a.getColor(R.styleable.GCButton_backColors, 0));
setBackColorSelected(a.getColor(R.styleable.GCButton_backColorSelected, 0));
setBackGroundImage(a.getInteger(R.styleable.GCButton_backGroundImage, 0));
setBackGroundImageSeleted(a.getInteger(R.styleable.GCButton_backGroundImageSeleted, 0));
setTextColorSelected(a.getColor(R.styleable.GCButton_textColorSeleted, 0));
setRadius(a.getDimensionPixelSize(R.styleable.GCButton_radius, 0));
setShape(a.getInt(R.styleable.GCButton_shape, 0));
setFillet(a.getBoolean(R.styleable.GCButton_fillet, false));
a.recycle();
TypedArray b = mContext.obtainStyledAttributes(attrs, new int[]{android.R.attr.textColor});
setTextColor(b.getColor(0, textColor));
b.recycle();
invalidateView();
} @Override
public void setOnClickListener(@Nullable final OnClickListener l) {
super.setOnClickListener(new NoDoubleClickListener() {
@Override
protected void onNoDoubleClick(View v) {
l.onClick(v);
}
});
} private void init() {
//将Button的默认背景色改为透明
// if (fillet) {
// if (gradientDrawable == null) {
// gradientDrawable = new GradientDrawable();
// }
// gradientDrawable.setColor(Color.TRANSPARENT);
// } else {
// setBackgroundColor(Color.TRANSPARENT);
// }
//设置文字默认居中
setGravity(Gravity.CENTER);
//设置Touch事件
setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View arg0, MotionEvent event) {
//按下改变样式
setColor(event.getAction());
//此处设置为false,防止Click事件被屏蔽
return false;
}
});
setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) { }
});
} //改变样式
@SuppressWarnings("Range")
private void setColor(int state) {
if (state == MotionEvent.ACTION_DOWN) {
//按下
if (backColorSelected != 0) {
//先判断是否设置了按下后的背景色int型
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(backColorSelected);
} else {
setBackgroundColor(backColorSelected);
}
} else if (backColorSelected != 0) {
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(backColorSelected);
} else {
setBackgroundColor(backColorSelected);
}
}
//判断是否设置了按下后文字的颜色
if (textColorSeleted != 0) {
setTextColor(textColorSeleted);
} else if (backColorSelected != 0) {
setTextColor(backColorSelected);
}
//判断是否设置了按下后的背景图
if (backGroundImageSeleted != 0) {
setBackgroundResource(backGroundImageSeleted);
}
}
if (state == MotionEvent.ACTION_UP) {
//抬起
if (backColor == 0) {
//如果没有设置背景色,默认改为透明
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(Color.TRANSPARENT);
} else {
setBackgroundColor(Color.TRANSPARENT);
}
} else if (backColor != 0) {
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(backColor);
} else {
setBackgroundColor(backColor);
}
} else {
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(backColor);
} else {
setBackgroundColor(backColor);
}
}
//如果为设置字体颜色,默认为黑色
if (textColor == 0) {
setTextColor(Color.BLACK);
} else if (textColor != 0) {
setTextColor(textColor);
} else {
setTextColor(textColor);
}
if (backGroundImage != 0) {
setBackgroundResource(backGroundImage);
}
}
} /**
* 设置按钮的背景色,如果未设置则默认为透明
*
* @param backColor
*/
public void setBackColor(int backColor) {
this.backColor = backColor;
} /**
* 设置按钮按下后的颜色
*
* @param backColorSelected
*/
public void setBackColorSelected(int backColorSelected) {
this.backColorSelected = backColorSelected;
} /**
* 设置按钮的背景图
*
* @param backGroundImage
*/
public void setBackGroundImage(int backGroundImage) {
this.backGroundImage = backGroundImage;
} /**
* 设置按钮按下的背景图
*
* @param backGroundImageSeleted
*/
public void setBackGroundImageSeleted(int backGroundImageSeleted) {
this.backGroundImageSeleted = backGroundImageSeleted;
} /**
* 设置按钮圆角半径大小
*
* @param radius
*/
public void setRadius(float radius) {
this.radius = radius;
} /**
* 设置按钮文字颜色
*
* @param textColor
*/
public void settextColor(int textColor) {
this.textColor = textColor;
setTextColor(textColor);
} /**
* 设置按钮按下的文字颜色
*
* @param textColor
*/
public void setTextColorSelected(int textColor) {
this.textColorSeleted = textColor;
} /**
* 按钮的形状
*
* @param shape
*/
public void setShape(int shape) {
this.shape = shape;
} /**
* 设置其是否为圆角
*
* @param fillet
*/
@SuppressWarnings("deprecation")
public void setFillet(Boolean fillet) {
this.fillet = fillet;
} public void setStroke(int strokeWidth, int strokeColor) {
this.strokeWidth = strokeWidth;
this.strokeColor = strokeColor;
} public void invalidateView() {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
if (backColor == 0) {
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(Color.TRANSPARENT);
} else {
setBackgroundColor(Color.TRANSPARENT);
}
} else {
if (fillet) {
if (gradientDrawable == null) {
gradientDrawable = new GradientDrawable();
}
gradientDrawable.setColor(backColor);
} else {
setBackgroundColor(backColor);
}
}
if (backGroundImage != 0) {
setBackgroundResource(backGroundImage);
}
//GradientDrawable.RECTANGLE
if (fillet) {
gradientDrawable.setShape(shape);
gradientDrawable.setCornerRadius(radius);
gradientDrawable.setStroke(strokeWidth, strokeColor);
setBackgroundDrawable(gradientDrawable);
}
} public abstract class NoDoubleClickListener implements OnClickListener { public static final int MIN_CLICK_DELAY_TIME = 1000;
private long lastClickTime = 0; @Override
public void onClick(View v) {
long currentTime = System.currentTimeMillis();
if (currentTime - lastClickTime > MIN_CLICK_DELAY_TIME) {
lastClickTime = currentTime;
onNoDoubleClick(v);
}
} protected abstract void onNoDoubleClick(View v);
}
}

  

需要设置边框颜色,形状等 fillet 属性设置为true

后续会增加阴影等更多效果~~

Button动态样式取代xml的更多相关文章

  1. WPF 中,动态创建Button,并使Button得样式按照自定义的Resource样式显示

    第一步:自定义一个Button的样式 1.新建一个xaml文件,在其中自定义好自己的Resources 这个Resource 的根节点是 <ResourceDictionary xmlns=&q ...

  2. 利用StateListDrawable给button动态设置背景

    项目中,遇到相同样式的Button,只是stroke颜色不一样.为了实现一个,就得写两个shape文件,一个selector文件:多个还得重复写. 解决方法: 结合StateListDrawable给 ...

  3. 深入理解脚本化CSS系列第五篇——动态样式

    前面的话 很多时候,DOM操作比较简单明了,因此用javascript生成那些通常原本是HTML代码生成的内容并不麻烦.但由于浏览器充斥着隐藏的陷阱和不兼容问题,处理DOM中的某些部分时要复杂一些,比 ...

  4. 动态样式语言Sass&Less介绍与区别

    一. Sass/Scss&Less是什么? Sass (Syntactically Awesome Stylesheets)是一种动态样式语言,语法跟css一样(但多了些功能),比css好写, ...

  5. less 一种 动态 样式 语言

    LESS « 一种动态样式语言 http://www.bootcss.com/p/lesscss/ 一种 动态 样式 语言. LESS 将 CSS 赋予了动态语言的特性,如 变量, 继承,运算, 函数 ...

  6. 前端笔记之React(三)使用动态样式表&antd&React脚手架&props实战

    一.使用动态样式表 1.1 LESS使用 全局安装Less npm install -g less 创建1.less文件,然后可以用lessc命令来编译这个文件: lessc 1.less 1.css ...

  7. DOM动态脚本和动态样式

    动态脚本 [定义] 在页面加载时不存在,但将来的某一时刻通过修改DOM动态添加的脚本. [方式] [1]插入外部文件方式 var script = document.createElement(&qu ...

  8. Less (一种动态样式语言)

    Less (一种动态样式语言). LESS是一种由Alexis Sellier设计的动态层叠样式表语言,受Sass所影响,同时也影响了 Sass的新语法:SCSS. LESS是开源的,其第一个版本由R ...

  9. JSON取代XML?--JSON入门指南

    定义 JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式. JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C# ...

随机推荐

  1. Spring切面编程步骤

    什么是面向切面编程 面向对象的编程主要注重核心业务,而面向切面编程主要关注一些不是核心的业务,但又是必须的辅助功能,比如一个完整的系统中,记录平时系统运行时抛出的异常,需要我们去记录,以便我们对系统尽 ...

  2. Day3-函数及作用域

    一.函数定义:一组代码片段用函数名封装起来,通过函数名的方式调用执行. 特性: 1.减少重复代码 2.使程序易扩展 3.使程序易维护 语法定义: def sayhi(): print("he ...

  3. html学习笔记 - 特殊字符

  4. Java反射机制详解(3) -java的反射和代理实现IOC模式 模拟spring

    IOC(Inverse of Control) 可翻译为“控制反转”,但大多数人都习惯将它称为“依赖注入”.在Spring中,通过IOC可以将实现类.参数信息等配置在其对应的配置文件中,那么当 需要更 ...

  5. Chart.js – 效果精美的 HTML5 Canvas 图表库

    Chart.js 是一个令人印象深刻的 JavaScript 图表库,建立在 HTML5 Canvas 基础上.目前,它支持6种图表类型(折线图,条形图,雷达图,饼图,柱状图和极地区域区).而且,这是 ...

  6. Windows、Office系列产品精华部分集锦

    提示 有了这个帖子麻麻再也不用担心我因为四处找Microsoft家的软件和系统而四处劳累所烦恼了! 首先,你们最爱的老XP同志,XP同志虽然退休了,但是依然坚持在岗位上,向他致敬!! Windows ...

  7. jQuery总结---版本一

    day01--- jQuery是一个函数库,简化了DOM操作,屏蔽了浏览器兼容性问题.函数分为4类 (1)DOM操作 (2)事件处理 (3)动画 (4)AJAX jQuery3的新特性有哪些? 1. ...

  8. Swoole笔记(三)

    WebSocket 使用Swoole可以很简单的搭建异步非阻塞多进程的WebSocket服务器. WebSocket服务器 <?php $server = new swoole_websocke ...

  9. IE低版本兼容的感悟

    2017-04-09 曾经折磨一代人的兼容问题,如今也在同样折磨着我们,明明可以做JS判断来避免对ie低版本的兼容,但是却还是耐心的做着兼容,你可能会问这是为什么, 我们调的不是兼容,是整整一代人的情 ...

  10. 使用类似于中介者模式实现不同VC之间的跳转

    在2013年的时候,我们就已经实现了类似于http地址进行页面跳转, 那个时候,主要是用继承ViewController和给 UIViewController和UINavigationControll ...