Android网络课程笔记-----定制系统控件1

1. 定制TextView和Button
    TextView:属性
    Button:   background="@drawable/selector"
    定制字体:     textView.setTypeface(Typeface.createFromAsset(
    getAssets(), "fonts/samplefont.ttf"));
 
2. 系统控件外观
    adt-bundle-windowssdkplatformsandroid-19data es
    不同控件的外观差别由styles.xml和themes.xml决定
 
作业:
1. 定制CheckBox和ToggleButton
原文地址:https://www.cnblogs.com/vijay/p/3590952.html