Subscribe to library updates

corwin42

Expert
Licensed User
Longtime User
AHNavigationDrawer updated to Version 1.30

V1.30:
- Some internal changes which should make it compatible with ULV (Ultimate ListView)
- New MaterialMenuDrawable object for Material Design Burger/Arrow/Cross/Check animation
 

BarryW

Active Member
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.
I try to download ULV from the link you gave to me... But the version is not v4.03
 

DonManfred

Expert
Licensed User
Longtime User
Decrypter V1.0.1 - first open Release

This Library can be used to Encrypt or decrypt a String to a encoded base64 string.
For the php-side you can use the php-class to decrypt strings which are encrypted by the b4a-library
 

klaus

Expert
Licensed User
Longtime User
The Flexible Table Class has been unpdated to version 1.41.
Changed the LoadSQLiteDB according to the error reported in the SQL issue thread
and the SQLite Cursor GetString versus GetDouble thread.
The problem appears with numbers bigger than 999999.
I left version 1.40 in case of problems.
I tested it with a few databases, but I am not sure if it works in all cases.
 

DonManfred

Expert
Licensed User
Longtime User
msMySQL 1.0.3
All ASync methods now have the possibility to use a Task-String (except the list of tables async method)

msMaria 1.0.6
All ASync methods now have the possibility to use a Task-String (except the list of tables async method)
 

DonManfred

Expert
Licensed User
Longtime User
ATTENTION:
This is a library to show a Datepicker or an Timeticker.
Sadly the Timepicker still DOES NOT WORK!
I dont´t know how to fix this problem! :mad:

As i now worked more than 80 hours on this library and the fact that the datepicker is working and looking really nice... I deciced to publish this library only as a DATEPICKER library.
I attach the javasource (Eclipse) too in the hope someone other here in b4a forum maybe get it to work and finish this library :rolleyes:

DateTimePicker Version 1.0.0

datepickerdialog001.png
datepickerdialog0002.png
 

DonManfred

Expert
Licensed User
Longtime User
MultiSelectSpinner updated to V1.0.2

Changes:
- Added a boolean flag
B4X:
msspinner.SelectAllOnFirst = True
If this is set to true then the first item will (de-)select all Items. In the build complete-String of all Selected items the first item will not be included in this case.
- Added itemselected event
B4X:
Sub msspinner_onItemSelected(position As Int, isChecked As Boolean, item As String)
    Log("_onItemSelected("&position&","&isChecked&","&item&")")
End Sub
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
** Activity (main) Pause, UserClosed = false **
** Activity (main) Resume **
_onItemSelected(3,true,Coconut)
_onItemSelected(3,false,Coconut)


B4X:
    msspinner.SelectAllOnFirst = True
    msspinner.Items = Array As String("-----","Apple","Banana","Coconut","Kiwi","Strawberry")
    msspinner.Selection = Array As String("Apple","Banana","Strawberry")
MultiSelectSpinner003.png
MultiSelectSpinner004.png
MultiSelectSpinner005.png
 

DonManfred

Expert
Licensed User
Longtime User
msEmoji V1.0.0

This Library comes basically with three Objects. All three of them are used in the Example.
EmojiParser, EmojiTextView and EmojiEditText

For the normal work you dont need the EmojiParser. It is only used in the example to get the list of all available Emojis

The Mainobjects are the other two. The EmojiTextview and the EmojiEditText
A Emoji always starts with a [ and ends with a ]. All chars between is the name of the Emoji.

B4X:
    Activity.LoadLayout("Layout1")
    lv.Clear
  Emoji.Initialize("")
    Dim emojilist As List = Emoji.ListEmoji
    For i = 0 To emojilist.Size-1
        Dim s As String = emojilist.Get(i)
        Dim d As BitmapDrawable = Emoji.GetEmojiDrawable(s)
        lv.AddTwoLinesAndBitmap2(s,"Type ["&s&"] to get this Image",d.Bitmap,"["&s&"]")
    Next
 
    lblEmoji.Text = "[de] [uk] [us] [wine_glass] [p1] [see_no_evil] [yellow_heart]"
    edtEmoji.Backgroundcolor = Colors.White
    edtEmoji.Text = "[de][uk][us] Donate much [dollar] [grin] [heart_eyes]"
    edtEmoji.Textcolor = Colors.Black

msEmoji001.png
msEmoji002.png
 

DonManfred

Expert
Licensed User
Longtime User
These days a library is posted on Android Arsenal.
StickerView? I looked on the side marked with "how it work". Please note that i´m german and can not read this gravity.... lol
So... WHAT IS THIS? :D
As it is a small library i decided to wrap it. Just out of fun :)

This is the result

msStickerView V1.0.0
 
Top