Android中如何调用其他字体(记录)

设置TextView的Typeface即可。

TextView textView = findViewById(R.id.edit_text);
Typeface typeface = Typeface.createFromAsset(getAssets(),"fonts/Roboto-ThinItalic.ttf");
textView.setTypeface(typeface);//第一句话“离离原上草,一岁一枯荣”引入gtw.ttf字体库

例如:

 Android中如何调用其他字体(记录)_第1张图片

主要思路:(1)两个TextView,一个做背景,一个做前台显示。 (2)TextView设置相应的字体。(3)前台显示的TextView增加阴影效果。

android:shadowColor="@color/colorFore"
android:shadowDx="0"
android:shadowDy="0"
android:shadowRadius="10"

你可能感兴趣的:(Android开发)