Subscribe to library updates

Star-Dust

Expert
Licensed User
Longtime User
SD_SqliteExtra rel 1.04

Add this method:
  • getListTable(Path As String,FileName As String) As List
  • getListFieldName(Path As String,FileName As String, TableName As String) As List
  • getListFieldTypeBase(Path As String,FileName As String, TableName As String) As List
  • getListFieldTypeName(Path As String,FileName As String, TableName As String) As List
 
Last edited:

Star-Dust

Expert
Licensed User
Longtime User
SD_BindingNavigator rel. 0.42

You can associate some views (EditText, Label, ImageView, ToggleButton, CheckBox) with specific fields of a Sqlite DataBase.
By sliding the position in the DataSet the views will be updated with the value of the fields in the row where the cursor points.

By changing the content of the views (EditText, Image), you can also update the fields associated with the views, by updating UpdateChange
 
Last edited:

Informatix

Expert
Licensed User
Longtime User
UltimateListView

This version adds the support of keys (sent by a keyboard, a trackball, a directional pad, a remote control...) and the examples are updated to be compatible with Android 6+.

Changelog v4.50:
- I added the Key, KeyDown and KeyUp events;
- I added the GetPositionSelectedWithKeys function;
- I added the KeyState class;
- I added a Keys demo;
- I fixed a bug in ClsExplorerForULV for long clicks;
- I set targetSdkVersion to 26 for all examples and added the runtime permissions where required.
 

moster67

Expert
Licensed User
Longtime User
B4AFluidSlider

Here is another Slider-library :). A slider widget with a popup bubble displaying the precise value selected.
I wrapped this one because it looks nice but mainly because the original library is written in Kotlin. This wrapper is a result of my learning process with Kotlin.
 

Star-Dust

Expert
Licensed User
Longtime User
SD: BindingNavigator (Sqlite GUI Navigator) Update release 0.50

In this version there are 2 important updates:

1. The WizardMask class. Which adds a new CustomView. By linking to a SQLite database, this customView will automatically create the mask with all the views related to the various fields of the chosen table. You will find an example at the next post.

2. The new AddGroupView method has been added in the two existing classes DataSet and NavigatorBar. With this method it will be enough to create a custom mask with the Design.
There must be a main panel where all the views you want will be attached. The name of the field to which they are to be associated must be entered in the View Tag.
The class will be passed as a parameter only the main panel. The rest will do the class, update the views as the DataSet or the NavigatorBar will scroll through the table.

Other
Video tutorial Method AddGroupView
 
Last edited:
Top