label

  1. jroriz

    B4J Question Paint a label based on its value

    Hi. Is there a better way to acomplish this? I need to paint a label, based on the value, from light red to solid green, passing through the yellow. My solution: ' Use: myLabel.Style = Paint(mylabel.text) Sub Paint(value As Double) As String Dim rgb As String If value > 90 Then rgb =...
  2. LucaMs

    Bug? [SOLVED] (v. 6.80) Label corners

  3. rleiman

    Android Question [SOLVED] IconButton and TalkBack

    Hi Everyone, One of my customers needs to use my app with TalkBack. It's almost compatible with TalkBack. The views that work with it are the label views and sliders. The app is also using the IconButton view but TalkBack speaks "Unlabled button" when the user slides a finger over they type of...
  4. K

    Android Question CSBuilder ClickableWord Error

    In my, I'm using CustomListview and labels. on one label I clickable work like this : Dim cs As CSBuilder cs.Initialize.Append(CreateClickableWord("9225146803")) Label1.Text = cs cs.EnableClickEvents(Label1) Word click : Sub Word_Click (Tag As Object) Log("aaaaaa" & Tag)...
  5. Star-Dust

    B4J Library [B4X] [XUI] SD XUIView

    I'm happy to announce the publication of my new B4XView library. This library adds to the XUi Views the native views of the three platforms (Android / IOS / Desktop) so that they can be managed by Design, using them as XUI views without having to change its type in the Globals Sub. With this...
  6. Flavio SOuza

    Android Question Leave a text in motion?

    Is it possible to leave a text of a label in motion? Like the one <marquee>in the HTML?</marquee>
  7. K

    Android Question Label Drawable not work

    Label Drawable = ColorDrawable property not work color of lable not change
  8. K

    Android Question App crashes when trying to change a label's text

    Hello! I'm new to this forum (and generally in B4A and Android programming) and this is my first post. I have a problem with the app I'm developing. This is the code causing the crash, but I don't know how to fix it: Private DriveStartHour As Int = -1 Private DriveStartMin As Int = -1...
  9. R

    iOS Question Update Text Label

    Hello, I have a problem with an application that must show the progress of the import of some data. The Label that should be updated with each new entry does not change, but remains only the first entry. If, however, the program is blocked, the label is updated. Below is an example of what the...
  10. Alexander Stolte

    Android Question .Left Property on the right side

    Hello, i'm expanding my chat a bit and would like to do the same as WhatsApp. here is a picture, so I save that explain: the width from the label to the text is not the Problem, the problem is, in the Designer i have a .Right Property and this Property is for example "5", if i now change the...
  11. R

    Android Question extract data from json and update label text in widget

    Hello, I would be great-full and happy if someone could help me out over here. I have searched a lot in the forums and tried multiple pieces of code but unfortunately I have issues. I want to make a widget. I get the data from a web server in Json format. I am able to get it successfully and...
Top