Custom text font inside a Simplecursoradaptor
问题 I have made an application where i use a SimpleCursoradapter. String[] from = new String[] {"title","notes","image"}; int[] to = new int[] { R.id.esodaTextView, R.id.amountTextView, R.id.imageView1}; esodaAdapter = new SimpleCursorAdapter (this, R.layout.recipe_list_item, null, from, to); As you can see i show the three data at 2 TextViews (esodaTextView + amountTextView) and at one imageView. The question is how can i set a custom font (that is saved at assets folder) to these 2 TextViews