is it possible to format an item text in the Listview so it would look for example like this:
part of string is bold and part is not
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yea, you’d just have to have two different textviews, one for the bold text, and one for the unbolded text. So you’d have a layout for each row that looks like this:
Then you’d use a SimpleAdapter to map the appropriate pieces of the string to each TextView. If you want the string to appear seamless, you’ll probably have to mess around with the gravity of the TextViews.