B4A Library SlideDayTimePicker

A wrap for this Github project. Posting the following:
1. B4A sample project
2. B4A library files
3. LibRes.zip - extract it and copy the folder so that it is on the same folder level as that of the /Files and /Objects folders of the B4A project
4. SampleRes.zip - extract it and copy the folder so that it is on the same folder level as that of the /Files and /Objects folders of the B4A project
5. The Java code - change it to your liking

You will need android-support-v4.jar in your additional library folder

Please note that it is called DayTimePicker and not DateTimePicker

1.png


2.png


3.png


Take note of the B4A Manifest file:
B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'SetApplicationAttribute(android:theme, "@style/MyAppTheme")
AddApplicationText(<activity
            android:name="com.github.jjobes.slidedaytimepicker.MainActivity"
            android:label="@string/app_name" >
        </activity>)

Sample Code:
B4X:
#Region  Project Attributes
    #ApplicationLabel: b4aOCRComplete
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: portrait
    #CanInstallToExternalStorage: False
#End Region

'#AdditionalRes: ..\resource
#AdditionalRes: ..\LibRes
#AdditionalRes: ..\SampleRes


'#AdditionalRes: C:\Users\----------2\Documents\Basic 4 Android\JOHAN APPS\JHS LIBS\resource\b4a_appcompat, de.amberhome.objects.appcompat
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\android\support\v7\appcompat\res, android.support.v7.appcompat
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\google\google-play-services\libproject\google-play-services_lib\res, com.google.android.gms
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\android\support\design\res, android.support.design

'#ExcludeClasses: .games, .drive, .ads, .fitness, .wearable, .measurement, .cast, .auth, .nearby
'#ExcludeClasses: .tagmanager, .analytics, .wallet, .plus, .gcm, .maps, .panorama

'#Extends: android.support.v7.app.AppCompatActivity

#Region  Activity Attributes
    #FullScreen: False
    #IncludeTitle: True
#End Region

Sub Process_Globals
    'These global variables will be declared once when the application starts.
    'These variables can be accessed from all modules.
  
End Sub

Sub Globals
    'These global variables will be redeclared each time the activity is created.
    'These variables can only be accessed from this module.

    Private Button1 As Button
    Dim dtp As SlideDayTimePicker
  

End Sub

Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
  
    Activity.LoadLayout("main")
    dtp.Initialize("dtp")
  
    dtp.HourFormat24 = True
    dtp.IndicatorColor = Colors.Green
    dtp.InitialDay = 6
    dtp.InitialHour = 19
    dtp.InitialMinute = 28
    dtp.ShowToastMessage = True

End Sub

Sub Activity_Resume
  

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub

Sub Button1_Click

    dtp.StartPicker

End Sub

Sub dtp_selected_day_time(myday As Int, myhour As Int, myminute As Int)
  
    Log("In B4A and day = " & myday)               'Sunday = day 1, etc up to Saturday = day 7
    Log("In B4A and hour = " & myhour)
    Log("In B4A and minute = " & myminute)      
  
End Sub

Sub dtp_selection_cancelled
  
    Log("In B4A and selection cancelled")
  
End Sub

SlideDayTimePicker
Author:
Github: Jason D. Jobes, Wrapped by: Johan Schoeman
Version: 1
  • SlideDayTimePicker
    Events:
    • selected_day_time (day As Int, hour As Int, minute As Int)
    • selection_cancelled
    Methods:
    • Initialize (paramString As String)
    • IsInitialized As Boolean
    • StartPicker
    Properties:
    • HourFormat24 As Boolean [write only]
    • IndicatorColor As Int [write only]
    • InitialDay As Int [write only]
    • InitialHour As Int [write only]
    • InitialMinute As Int [write only]
    • ShowToastMessage As Boolean [write only]
 

Attachments

  • LibRes.zip
    5.2 KB · Views: 313
  • SampleRes.zip
    51.7 KB · Views: 313
  • TheJavaCode.zip
    30.3 KB · Views: 280
  • b4aSlideDayTimePicker.zip
    8.7 KB · Views: 316
  • SlideDayTimePickerLibFiles.zip
    36 KB · Views: 330
Top