I am passing the string via an ArrayList Hashmap. My code is as follows;
Adapter1 = new SimpleAdapter(getBaseContext(), myList,
R.layout.content, new String[]{ "TA", "IA"},
new int[]{R.id.ta, R.id.ia});
listview.setVerticalScrollBarEnabled(true);
listview.setAdapter(Adapter1);
What gets passed is really the values of "TA" and "IA" keys of the Hashmap. They go straight to TextViews at R.id.ta, R.id.ia.
How do I bold only a section of that text. For example, it contains a number, and I want to bold only that number. (I don't want to bold R.id.ta, R.id.ia fully)
Please help. Thanks!