I have a ListView. When I try to make it's row's textview bold - it falls. I try:
ListView list = (ListView) findViewById(R.id.my_list);
list.setAdapter(someListAdapter);
((TextView) list.getChildAt(0).findViewById(R.id.first_name)).setTypeface(null, Typeface.BOLD);
I need to do this with only one (headers) row's textviews.