I set the typeface of a row of my list to bold when I click on it. I use the following code to do that -
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
View rowView = view;
TextView tv = (TextView) rowView.findViewById(R.id.label);
tv.setTypeface(null, Typeface.BOLD);
}
});
However, if I select another row, the previously selected row still stays bold. I want the typeface of that row to be changed to normal. How could I achieve that?