I\'m using a custom font throughout my application (which, incidentally, I\'ve frustratingly found out that you have to apply programmatically by hand to EVERY control!), an
Looks like the constructor is wrong
change it to:
public MyAdapter (Context context, List objects) { this.context = context; this.objects = objects; }
it worked well for me.