I have items in ListActivity and I want to set a specific font for items. What can I do? I have no XMl layout only Class.
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(Menu.this,android.R.layout.simple_selectable_list_item, classes));
//Set in the center
//Set the color of Listactivity
getListView().setBackgroundColor(Color.rgb(0, 154, 154));
}