Можно ли программно установить атрибут textStyle для TextView? Не существует метода setTextStyle().
Чтобы быть ясным, я не говорю о стилях View/Widget! Я говорю о следующем:
<TextView
  android:id="@+id/my_text"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="Hello World"
  android:textStyle="bold" />
