B4A Library Preferences - Material Design Preferences - corwin42    Jul 21, 2024   (24 reactions) This library provides a framework to create nice looking Material Design Preferences down to API9. It uses this GitHub project to fix some bugs in the android support preferences stuff. It also adds some nice features like simple icon tinting, simple menu list preferences and a color picker.
For a B4A Library AppCompat - Make Material Design apps compatible with older Android versions - corwin42    Aug 18, 2019   (69 reactions) And before you post, please do a forum seach. Most probably the same error was previously reported by another user. If you don't see a stack trace in the log window, please try the unfiltered logs. Unfortunately most errors only show when you have your device connected via USB in the unfiltered logs B4A Library Material Date Picker - intellvold    Oct 09, 2022   (15 reactions) Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout")
End Sub
Sub Button1_Click
Datepicker.Initialize("Date",2022 ,DateTime.GetMonth(DateTime.Now) ,DateTime.GetDayOfMonth(DateTime.Now))
Mycalendar.Initialize("dd.mm.yyyy",Mycalendar.PRC,"2.02.1990") 'start date
' Datepick B4A Library DesignSupport - Additional Material Design components - corwin42    Nov 05, 2018   (65 reactions) This library is a wrapper to some of the objects of Googles Design Support library.
Requirements:
This library requires B4A 6.31 or above.
From V2.32 on B4A V6.80 or newer is required. If you use an older B4A version use the V2.31 library.
AppCompat 3.30 or above is required.
The examples need som B4A Library afollestad material-dialogs - tchart    May 14, 2015   (17 reactions) items As List, selectedIndex As Int, positiveText As String, negativeText As String) B4A Library Material Dialogs - Make your dialogs nice - corwin42    Mar 09, 2017   (38 reactions) Sub SomeSub
Dim Builder as MaterialDialogBuilder
Builder.Initialize("CustomViewDialog")
Builder.CustomView(False, 300dip)
Builder.PositiveText("Ok").NegativeText("Cancel")
Builder.Show
End Sub
Sub (Dialog As MaterialDialog, CustomView As Panel)
'Load your layout B4A Library Floating Action Button - woniol (first post)    Jan 10, 2015   (1 reaction) I found the problem. In your examples Material Theme is set in Manifest:
SetApplicationAttribute(android:theme, "@android:style/Theme.Material.Light")
Setting it to Holo helped on my android 4.1 devices:
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")
Thanks again for this gre B4A Library Hitex TransformationLayout - Lello1964 (first post)    Oct 29, 2020 in sdk i have installed com.google.android.material:material(Google Maven) Version: 1.2.1
but doesn't work B4A Library Material AnimatedSwitch - DonManfred    Jun 18, 2015   (13 reactions) Activity.LoadLayout("Layout1")
aSwitch1.BallColorPress = Colors.Red
aSwitch1.BallColorRelease = Colors.Green
aSwitch1.BaseColorPress = Colors.Blue
aSwitch1.BaseColorRelease = Colors.Magenta
aswitch2.BallColorPress = Colors.Cyan
aswitch2.BallColorRelease = Colors.DarkGray
B4A Library Beauty Material Spinner - Spinner with more custom - hoiketoan95    Mar 12, 2021   (7 reactions) Dim listitem As List
listitem.Initialize
listitem.AddAll(Array As String("One", "Two", "Three","Four","Five","Love <3 B4X"))
B4ADropDownView1.ItemsList=listitem
B4ADropDownView1.SelectedIndex=1
'COMPARE WITH DEFAULT SPINNER
Spinner1.AddAll(Array As String("One", "Two", "Three"," Page: 1   2   3   4   5   6   7   Powered by ColBERT |