/** * 修改字体 */ class StyleTextView(context: Context, attrs: AttributeSet?) : AppCompatTextView(context, attrs) { init { typeface = Typeface.createFromAsset(resources.assets, "ttfs/app_name.ttf") } }