I have a list view in which i show the list of messages. I am using SimpleAdapter to show the listview. I have a flag(true/false) set in the hash map(that shows whether message is read or not).Its working properly. I could update flag once it is read. How to differentiate read and unread messages(I just want bold text view for unread message).

link|improve this question

1  
compare the values from the hash map and set for those which are false TextView.setTypeface(null, Typeface.BOLD); – user1203673 Feb 17 at 10:23
what is your question basically? do you want answer for how to differentiate or you want to know how to make a specific textview with bold text? – Hiral Feb 17 at 10:46
feedback

1 Answer

up vote 0 down vote accepted

Use a DerivedBaseAdapter. In the getView() method check the true/false for the key value. Correspondingly make the text in the listView bold.

link|improve this answer
yea i have created a custom adapter. and that solved. thanks. – Seshu Vinay Feb 17 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.