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>
如果是指定字体,也就是说字体样式,如:宋体,⿊体,那么你需要⾃⼰添加字体⽂件了,因为系统⾥⾯有可能不⽀持你设置的字体,以TextView为例
textstyleTypeface type = ateFromAsset(getContext().getAssets(), "f");
TextView text = new TextView(getContext());
text.setTypeface(type);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论