EditText的字体和大小
<style name="TextAppearance.Medium"> <item name="android:textSize">18sp</item> <item name="android:textStyle">normal</item> <item name="android:textColor">?textColorPrimary</item></style>其中textSize是设置字体大小
<item name="android:textStyle">normal</item>
Typeface type = Typeface.createFromAsset(getContext().getAssets(), "fonts/samplefont.ttf");TextView text = new TextView(getContext());text.setTypeface(type);