Android Question AS_ScrollingChips border color issue

Scantech

Well-Known Member
Licensed User
Longtime User
B4X:
    AS_ScrollingChips1.ChipPropertiesGlobal.BorderColor = xui.Color_Red
    AS_ScrollingChips1.SelectionBorderColor = xui.Color_Red
I am assuming the AS_ScrollingChips1.ChipPropertiesGlobal.BorderColor is fo non-Selection tabs? Both above codes will change the selection border color only.

If im wrong, how do i change the non-selection tab bordercolor?

Update: Single mode does not work, multi works?
 
Last edited:

Scantech

Well-Known Member
Licensed User
Longtime User
another issue in single mode.

B4X:
AS_ScrollingChips1.SetSelections(Array As Int(7,8))
Array 8 border color and selection color works.

B4X:
AS_ScrollingChips1.SetSelections(Array As Int(8))
Array 8 border color works and selection color does not.
 
Upvote 0

Alexander Stolte

Expert
Licensed User
Longtime User
That's not a mistake, that's the way it should be. If you decide on a selection mode, then there is only the SelectionBorderColor for the chips that are selected. The chips that are not selected have no border.

btw: The title above makes no sense to me if you are talking about the AS_ScrollingChips library.
 
Upvote 0
Top