Android Question B4XComboBox text color

Nitin Joshi

Active Member
Licensed User
Hi, I am using B4XComboBox in my project. Even if i set any text color, when i run the app text color is black. why it is so?
 

mangojack

Well-Known Member
Licensed User
Longtime User
B4XComboBox is based on Spinner (.cmbBox)

B4X:
ComboBox1.cmbBox.TextColor = Colors.Red
 
Upvote 0

Nitin Joshi

Active Member
Licensed User
It worked, thanks a lot!

One more thing, I want to use combo box to select multiple values, like checked items. is it possible?
 
Upvote 0

mangojack

Well-Known Member
Licensed User
Longtime User
One more thing, ....

Always best to start a new thread for a new question .


I want to use combo box to select multiple values, like checked items. is it possible?


I do not think this is possible with B4XComboBox (or even Spinner)

You could easily fabricate a similar combobox view based on a CustomListView (with multiple selection)

 
Upvote 0
Top