Has anyone managed to recreate the new Date and Time Pickers in the new Google Calendar app? If not whose willing to take up the challenge; I'm afraid it's beyond my capability being new to B4A.
David
I am looking for this as well. Just wondering if I create this Dialog, would it be better to create something like this in B4A or is it better to create it in Java?
I have not written any libraries yet, but would be happy to give it a go. Should it be included in the other Dialogs Library?
Brian
Inside my lib bcmaterial you can find this time picker. But not using a dialogue or such...The time picker is more important to me since I'm hoping someone completed that one.
It´s one of the oldest libraies available...Can I get a link to the time picker you are using?
'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: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
AddManifestText(
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")