I am developing a chat application.Here for chat i have used ListView .
I want to set bold and italic options for the text of ListView dynamically.
setTypeFace is not working for it .
How can i do that?
I am developing a chat application.Here for chat i have used ListView . I
Share
setTypeFace works. You have to set it in the adapter on the getView() method. For getView to get called you should use adapter.notifyDataSetChanged();
Here is an example I used for the setTypeFace() method. This code is in the getView method of the adapter.