我是靠谱客的博主 畅快外套,最近开发中收集的这篇文章主要介绍Android文字头部被切掉,Android textview文本在自定义字体的两侧被切断,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
这是在预览和设备上发生的事情:
TextView没什么特别的,只是加载自定义字体:
public class TestTextView extends AppCompatTextView {
public TestTextView(Context context) {
super(context);
init(context);
}
public TestTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public TestTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
void init(Context context) {
Typeface t = Typeface.createFromAsset(context.getAssets(), "fonts/daisy.ttf");
setTypeface(t);
}
}
布局也很基础,但以防万一:
xml
最后
以上就是畅快外套为你收集整理的Android文字头部被切掉,Android textview文本在自定义字体的两侧被切断的全部内容,希望文章能够帮你解决Android文字头部被切掉,Android textview文本在自定义字体的两侧被切断所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复