B4A Code Snippet [DSE] [B4A] Standard Tooltips for Android 8+ - stevel05    Oct 13, 2022   (10 reactions) Based on @Dave O 's code in this thread, here is a Designer script extension to add standard tooltips for Android 8+ 'Parameters: Text As String, 1 view 'Code in DesignerScript:{class}.SetTooltip("Tooltip", Button1) Public Sub SetTooltip(DesignerArgs As DesignerArgs) Dim p As Phone If p.Sdk Share My Creation GPS Example - klaus    Apr 05, 2024   (27 reactions) Do not use this program it is a very old one which was released before the GoogleMaps library was released.
Many things have changed since the release of this program and it does no more work as expected.
I have not updated it to satisfy the new requirements of Google which have become more and more B4A Code Snippet standard tooltips for Android 8+ - Dave O    Oct 10, 2022   (6 reactions) For tooltips (press-and-hold on a view to show some explanatory text), in the past I used a hack in my apps to position a toast message near the view. This has stopped working on certain recent versions of Android (I'll cover that in a separate post), so I went looking for a better solution.
It tur Bug? (Very) minor IDE UI glitch! - Erel (first post)    Mar 31, 2020   (1 reaction) I saw it before and thought that no one will see it :)
The tooltip is set to the full file path and it is empty for new projects, before they are saved. Wish Ability to add tooltips to views as a property in designer or code - stevel05 (first post)    Oct 11, 2022   (3 reactions) I fancied a change for 10 mins so here is my take:
'Parameters: Text As String, 1 view
'Code in DesignerScript:{class}.SetTooltip("Tooltip", Button1)
Public Sub SetTooltip(DesignerArgs As DesignerArgs)
Dim p As Phone
If p.SdkVersion >= 26 Then
Dim Text As String = DesignerArgs.Argume B4A Question B4X Tooltip - Alexander Stolte (first post)    Jan 26, 2021   (1 reaction) https://www.b4x.com/android/forum/threads/b4x-bctooltip-cross-platform-tool-tips.119621/ B4A Code Snippet show tooltip for view - Dave O (first post)    Oct 11, 2022 A newer solution (that may be more robust) is to use standard tooltips via this wrapper sub. Bug? Code tooltip not shown with colon character ":" - Alain75    Apr 04, 2024 When using the colon character ":" to separate instructions on the same line, the code tooltip is not shown:
152455
When suppressing it, the code tooltip appears:
152456
The same problem appears in simpler usage like:
152457
152458
It's a bit shame because I often use this character to "compact" Bug? Tooltip with < in text - CaptKronos    Aug 21, 2022 Just noticed that if a comment before a sub definition contains a '<' symbol, the tooltip does not show and instead '(Invalid description)' is displayed.
'This comment will cause the tooltip to display an error because of the < symbol
Sub test
End Sub B4A Question How to create Hint Text alike to picture? - PaulMeuris (first post)    Dec 07, 2023   (1 reaction) Something like this tooltip?
148420
You can see how it is done in this tutorial: Ribbon with tooltips
EDIT: sorry this is a B4J solution. Page: 1   2   3   4   5   6   7   Powered by ColBERT |