Button认知
public class Button extends TextView
java.lang.Object
↳ android.view.View
↳ android.widget.TextView
↳ android.widget.Button
使用详解
Button设置字体颜色
主要是调用Button.setTextColor();进行颜色设置。
Button.setTextColor(Android.graphics.Color.RED);//系统自带的颜色类
Button.setTextColor(0xffff00ff);//颜色值
Button.setTextColor(this.getResources().getColor(R.color.red));//通过获得资源文件进行设置
常用实现效果
装载自:Android自定义Button背景色,弧度 详细内容请参看原作者。
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- pressed -->
<item android:state_pressed="true" >
<shape android:shape="rectangle">
<gradient
android:startColor="#ff8c00"
android:endColor="#ff8c00"
android:angle="270" />
<corners
android:radius="4dp" />
</shape>
</item>
<!-- focus -->
<item android:state_focused="true" >
<shape>
<gradient
android:startColor="#ffc2b7"
android:endColor="#ffc2b7"
android:angle="270" />
<corners
android:radius="4dp" />
</shape>
</item>
<!-- default -->
<item>
<shape>
<gradient
android:startColor="#d0d0d0"
android:endColor="#d0d0d0"
android:angle="0" />
<corners
android:radius="4dp" />
</shape>
</item>
</selector>