791 questions
0 votes
2 answers
70 views
Date Picker Dialog not opening
I'm creating a date-of-birth picker screen with Jetpack Compose in Kotlin, where I need to let users select a date using a DatePickerDialog. I'm invoking this Composable function within onCreate() ...
1 vote
1 answer
144 views
Failed to resolve: com.vivekkaushik.datepicker:datePickerTimeline:0.0.4
The error am getting is this Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.vivekkaushik.datepicker:datePickerTimeline:0.0.4. build.gradle implementation '...
0 votes
1 answer
31 views
Why I could use a lambda to define onDateChangedListener(an interface), and where the data comes from?
I am using DatePicker(a widget), and I use .init() with it .init() need four things. open fun init( year: Int, monthOfYear: Int, dayOfMonth: Int, onDateChangedListener: DatePicker....
0 votes
1 answer
106 views
Styling of native date picker on Android
We have following issue: We use an inApp browser to render a website to onboard a customer We have an input field with type="date". Clicking this field renders the usual device-dependent ...
1 vote
0 answers
37 views
Alarm Only Goes Off At The Set Date But Ignores The Set Time When Using Alarm Manager In Android
I've developed an application where a Text appears on screen whenever the current time matches the date and time selected by the user. This is accomplished using Alarm Manager. The date and time are ...
1 vote
1 answer
1k views
Android styles.xml in Dark Mode overrides .Net Maui Splash Theme styles
I created a .Net MAUI application that has a native Android DatePicker. In the directory Platforms/Android/Resources I have two folders, values and values-night for the styles.xml of the Android ...
0 votes
0 answers
104 views
Get weekday format right with syncfusion_flutter_datepicker flutter
How do I get the one letter weekday in flutter with syncfusion_flutter_datepicker? This is my code: SfDateRangePicker( backgroundColor: Colors.white, selectionColor: primaryColor, ...
0 votes
2 answers
374 views
How to change the color of the selected date in a colorPicker in Flutter?
i am having problems when trying to change the colors of my DatePicker. That's how I have it now, I did it with the builder parameter and returning a theme because if I tried to change the ...
0 votes
1 answer
127 views
Material date picker not showing
I am using material date picker in my andorid project in fragment. On specific click, I want to show user the date dialog but on click nothing is showing. Here is my code: I am expecting that user ...
3 votes
1 answer
647 views
Jetpack Compose DatePicker is taking empty space even if title and headline are empty
Compose DatePicker is taking empty space even if the title and headline are empty. It's already published as a bug: https://issuetracker.google.com/issues/267194809 DatePicker: DatePicker( state = ...
0 votes
1 answer
58 views
Calendar View not showing in android DatePicker
I have added android.app.DatePickerDialog for selecting date from the user. The dialog was working properly on most of the mobile devices. But in Samsung mobiles calendar view is not showing, only ...
2 votes
1 answer
386 views
Android studio making only list of dates selectable in date picker
Title, I want to have a list (array, xml, text whatever is easiest) and I want to have only those dates(there are gaps in the dates) in the date picker be selectable. I know how to set the min and max ...
0 votes
1 answer
210 views
How to replace Arabic numbers in DatePickerDialog itself with English numbers while still using Arabic strings in Android?
I'm using a DatePickerDialog in my code and set the Locale of the app right before using it and in onCreate of my base activity. it's working perfectly in Arabic as it uses Arabic (called Hindi format ...
0 votes
1 answer
518 views
DatePicker in MAUI appears full screen and aligned to the left-top corner in Android
Hello. I am developing an MAUI app in which I have to use a customized date picker without borders. However, it appears in the corner of the screen and not in the middle as it should. I am using .Net ...
7 votes
2 answers
2k views
Jetpack Compose UI Test with Material3 DatePickerDialog
My question is pretty simple. How do I perform any selections on a DatePickerDialog in Jetpack compose's UI Tests?