Subscribe to library updates

udg

Expert
Licensed User
Longtime User
Library dgTextEffects released today!

It's based on Android's TextSwitcher and makes use only of Core and Reflection libs.
It may be useful to show simple text effects on basic apps.
It can be used both from the Designer or from code.

Some simple effects:
  • Rotating text (i.e. abc->bca->cab->abc)
  • Rotating text advanced (text scrolls rigth to left, showing only the visible portion allowed by container's dimensions)
  • Text flashing 1 (alternating text colors)
  • Text flashing 2 (alternating background colors)
  • Text growing and shrinking
You can design your own simple effects simply altering two labels' properties.

Honestly, nothing to write home about..but it may come handy someday.

udg
 

DonManfred

Expert
Licensed User
Longtime User
ViewTagger V1.0.1

This library allows you to put labels on the top left or top right edge of an view.

B4X:
    lv.Initialize("lv")
    ' Button
    lv.AddLabelToview("Left",Colors.Red, Colors.White,Button1,20,True)
    lv.AddLabelToview("Right",Colors.White, Colors.Black,Button1,20,False)
   
    ' Imageview
    lv.AddLabelToview("Featuring",Colors.Blue, Colors.White,ImageView1,20,False)
   
    ' Label
    lv.AddLabelToview("HOT",Colors.Red, Colors.White,Label1,5,True)

    ' Toggle
    lv.AddLabelToview("HOT",Colors.Red, Colors.White,ToggleButton1,20,False)

    ' Spinner
    lv.AddLabelToview("NEW",Colors.Red, Colors.White,Spinner1,20,False)

    ' EditText
    lv.AddLabelToview("42",Colors.Red, Colors.White,EditText1,20,False)

    ' ListView
    ListView1.AddSingleLine("Item 1")
    ListView1.AddSingleLine("Item 2")
    lv.AddLabelToview("100",Colors.Red, Colors.White,ListView1,20,False)
   
    ' ProgressBar
    ProgressBar1.Indeterminate = False
    ProgressBar1.Progress = 50
    lv.AddLabelToview("Yo!",Colors.Red, Colors.White,ProgressBar1,20,False)
LabelView.png
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
{chargeable} MSMariaDB V1.0.2
This is a Library which uses the MariaDB-Connector to connect to a MySQL-Database.
Advantage here is that you can use the Connector without need for a Oracle licence.
AND the MariaDB-Connector is a real light-weight connector too. The connector is just approx 240kb

This Library is a buy one, get two. User who buy this library will get my MSMySQL-Library too. And vice versa.
 

Informatix

Expert
Licensed User
Longtime User
UltimateListView v4.03

I fixed a bug in the Touch event of the ULV. It crashed the app if the Touch event was declared and your finger was still on screen when the app went to pause.

Please download with the same link and password as for previous versions.
 

Informatix

Expert
Licensed User
Longtime User
LibGDX

This version supports the new format of TMX files from Tiled Map Editor.

Changelog:
- I fixed two bugs;
- the latest TMX format of Tiled Map Editor is now properly decoded (with support of animated tiles and image layers);
- I added the RenderImageLayer function to the map renderers;
- I added the lgMapTiledMapImageLayer class for the image layer of tiled maps;
- I added the OffsetX and OffsetY properties to lgMapAnimatedTiledMapTile and lgMapStaticTiledMapTile;
- I added the CurrentFrame and CurrentFrameIndex properties to lgMapAnimatedTiledMapTile;
- I added the FinishLoadingAsset function to lgAssetManager;
- I added the SetAlpha function to lgBitmapFontCache;
- I added FixtureCount and GetAllFixtures to lgBox2DWorld;
- I added the ResetOnTouchUp property to lgTouchpad;
- I removed Scale and Div from lgMathVector3 because these functions were deprecated.
 
Top