B4J Question Color alpha values

Tayfur

Well-Known Member
Licensed User
Longtime User
I created 9 pcs label . and all colors and alpha valus is same . (colors:yellow, Alpha:125)
But. Result is diffrent all Alpha values.

where is my foulty.
upload_2018-12-4_16-59-54.png


B4X:
For i=0 To PictureList.Size-1
        Dim L As Label
        L.Initialize("MYLBL")
        mBase.AddNode(L,30+i*40,30,30,30)
        L.Text=i+1
        L.Tag=i
        L.Alignment="CENTER"
        CSSUtils.SetBackgroundColor(L,fx.Colors.From32Bit(Label_Background_Color_N))
        '    CSSUtils.SetBackgroundColor(L,fx.Colors.From32Bit("0x80008000"))
            
        Next
 
Top