<Apply multiple style on TextView> I want to apply...
# stackoverflow
u
Apply multiple style on TextView I want to apply multiple text-style on textview programmatically in android. val myView : TextView = findViewById(R.id.date_title) // now I want to apply - Bold & italic style on myView at same time like we can do in XML file e.g android:textStyle="bold|italic" myView.setTypeface(null, Typeface.BOLD) myView.setTypeface(null, Typeface.ITALIC) But as result I get only italic name how I will get both at same time