I'm trying to change the font from a specific EditText in the MainActivity, but I'm getting the following error :
java.lang.RuntimeException: Font asset not found font/af.ttf
the code :
val texto: EditText = findViewById(R.id.texto)
var face = Typeface.createFromAsset(assets, "font/af.ttf")
texto.typeface = face
How do I solve this?