I found something similar in SO: android-tv Changing text color and font of browse fragment rows header
Following topic answer I came up with this:
<style name="CustomRowHeaderStyle" parent="Widget.Leanback.Row.Header">
<item name="android:textColor">@color/red</item>
</style>
But this changes not only text that appears above the rows, but also navigation drawer text. I would love to get answer for the first one (having different color for navigation drawer item headers).
if i understand your question correctly, you want to change color of row header presenter in browser fragment of android leanback library. for this purpose you can design header layout by your self to achieve this goal. first you need to design a custom android layout which lets call it custom_header_layout
then you need to make new class and extend ListRowPresenter to set your header layout to browserfragment like this:
and then at last extends RowHeaderPresenter and to set data to your headers in browserfragment:
for more detail please check these two awesome post BrowseFragment Header customization and BrowseFragment ListRow customization.
hope this helps :)