I'm facing an issue with android where the textviews and buttons are not getting the textStyle bold in several activities. I have checked the theme and compared with other activities and all look the same. However The textStyle bold is not working. I have tried using via code and via XML. Is there any way to trace, debug and check why the textStyle bold is not applied on several activities?
I have tried the following
textView.setTypeface(null, Typeface.BOLD);
and also
<TextView
android:id="@+id/header_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:gravity="center"
android:text="Continue"
android:textStyle="bold" />
Both didn't work for me. Can anyone help why its not working in several activities?