Android Question RoundSlider with label value into.

netsistemas

Active Member
Licensed User
Longtime User
How view a label into circle, with value.

Simil to the demo:
but with internal library.
 

MarcoRome

Expert
Licensed User
Longtime User
B4X:
Sub Process_Globals
    Private fx As JFX
    Private MainForm As Form
    Private xui As XUI
    Private Label1 As B4XView
End Sub

Sub AppStart (Form1 As Form, Args() As String)
    .....
    Label1.SetColorAndBorder(xui.Color_Transparent, 5dip, xui.Color_Red,50dip)
    Label1.Text = "23"
End Sub

1636737723891.png
 
Upvote 1

netsistemas

Active Member
Licensed User
Longtime User
the originial library, i thing its had a label into, and this label, change the value, when the user move the control.

i view that the solucion are ,put a new control-label over the control slider and set the value in the event.
thanks
 
Upvote 0

netsistemas

Active Member
Licensed User
Longtime User
C:\Program Files (x86)\Anywhere Software\Basic4android\Libraries\XUI Views.b4xlib

I did not know about the existence of this project. (What else will I not know?.....)

Thanks.
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
Where do you install your B4X projects.
XUI Views.b4xlib is an internal library.
It is in the Libraries folder of each B4X platform
It is probably C:\Program Files (x86)\Anywhere Software\B4A\Libraries
Or something similar.
 
Last edited:
Upvote 0
Top