I want to set a custom typeface for a Textview in ListView Adapter ViewHolder. My typeface font file is in assets folder, so I will need a context reference in my adapter class to access the assets path and also I don't want to pass a context reference to my adapter class constructor. Should I use context reference through Dagger2 DI or should I make a separate DI Component to get reference of my font Typeface class.
Thanks in advance.