Devv Active Member Licensed User Longtime User Sep 6, 2015 #1 I'm trying to colorize a list view line text B4X: contacts_list.TwoLinesLayout.Label.TextColor = Colors.blue For i = 0 To contact_and_status.Length -1 contacts_list.AddTwoLinesAndBitmap(contact_and_status(i),"hi",Null) Next it is not coloring the line text, what i'm doing wrong ?
I'm trying to colorize a list view line text B4X: contacts_list.TwoLinesLayout.Label.TextColor = Colors.blue For i = 0 To contact_and_status.Length -1 contacts_list.AddTwoLinesAndBitmap(contact_and_status(i),"hi",Null) Next it is not coloring the line text, what i'm doing wrong ?
DonManfred Expert Licensed User Longtime User Sep 6, 2015 #2 Devv said: it is not coloring the line text, what i'm doing wrong ? Click to expand... You changed TwoLinesLayout Devv said: contacts_list.TwoLinesLayout.Label.TextColor = Colors.blue Click to expand... but you are using TwoLinesAndBitmap Devv said: contacts_list.AddTwoLinesAndBitmap(contact_and_status(i),"hi",Null) Click to expand... Upvote 0
Devv said: it is not coloring the line text, what i'm doing wrong ? Click to expand... You changed TwoLinesLayout Devv said: contacts_list.TwoLinesLayout.Label.TextColor = Colors.blue Click to expand... but you are using TwoLinesAndBitmap Devv said: contacts_list.AddTwoLinesAndBitmap(contact_and_status(i),"hi",Null) Click to expand...
Devv Active Member Licensed User Longtime User Sep 6, 2015 #3 DonManfred said: You changed TwoLinesLayout but you are using TwoLinesAndBitmap Click to expand... thank you that solved my problem u must had used "TwoLinesAndBitmap" Upvote 0
DonManfred said: You changed TwoLinesLayout but you are using TwoLinesAndBitmap Click to expand... thank you that solved my problem u must had used "TwoLinesAndBitmap"