The datepickerdialog tag has no wiki summary.
0
votes
0answers
10 views
Android DatePickerDialog crash on 2.3
I have a DatePickerDialog on my application. I am using DatePickerDialog because I need to show only month and year and it's easier with dialog than datepicker.
Its working fine in 4.0 or higher ...
0
votes
1answer
92 views
Android: Change button text in DatePickerDialog / TimePickerDialog
I have got a DatePickerDialog. In the default configuration it works fine.
DatePickerDialog dialog = new DatePickerDialog(
view.getContext(),
new OnDateSetListener() {
@Override
...
1
vote
1answer
77 views
Date picker dialog listener
I have to use a DatePickerDialog to get selected date in a textview. When I click the textview the DatePickerDialog should appear.
I wrote this
private DatePickerDialog.OnDateSetListener ...
0
votes
1answer
204 views
DatePicker.setMinDate(long minDate) throws IllegalArgumentException: Time not between
I have a time interval consisting of a beginning and an end date. I have a way of letting the user set these dates through DatePickerDialogs. Here is the code of the method that creates and shows the ...
0
votes
1answer
92 views
hide day picker in datepickerdialog
Hi is there any correct way to hide the day picker in a datepickerdialog? I'm using native android datepickerdialog not a custom datepickerdialog. Hope someone can help.
Below is my code for the ...
0
votes
1answer
57 views
How to make a DatePickerDialog for monodroid/mvvmcross?
I made a DatePicker like that : https://github.com/eMi-/mvvmcross_datepicker_timepicker/
But I want to have this DatePicker in a dialog for monodroid and bind the selected date (mvvmcross). Someone ...
0
votes
0answers
46 views
Android DatePickerDialog soft keyboard auto-hiding on Next
This appears to be a genuine "bug", but I want to make sure.
In a DatePickerDialog:
On Nexus 7:
Click or double click the month name
Soft keyboard opens
Type "dec"
The month updates to Dec, but ...
2
votes
1answer
881 views
android date picker
I want to restrict the past dates should be disabled and date date picker has to show next one month future dates how can i modify the program
package com.sample.DatePickerExample;
import ...
0
votes
1answer
133 views
DatePicker date set in android
I need a date-picker dialog in my application. First, I open the date picker dialog box and I select the date. The next time whenever open Date pickerDialog, the date of date picker should be current ...
0
votes
2answers
98 views
Integer.parseInt reformat string?
I'm building my custom application for Android. I have implemented a datepicker dialog which it takes time when a time is picked. The problem is that time picker doesn't format correctly what I select ...
0
votes
0answers
161 views
App crashing while using DatePickerFragment
I am using DatePickerDialog to set the date, but my app is crashing when I use this DatePicker .. Means the app doesn't crash when I don't use it and just submit the data ... Here's the code of ...
1
vote
2answers
229 views
Android DatePickerDialog CalendarView's title Inconsistency
I am creating a DatePickerDialog, like it's done in the documentation. However, I am noticing that the CalendarView's title (i.e. "December 2012" as it would be for today) doesn't change immediately ...
0
votes
1answer
89 views
how to hide the softketboard when DatePickerDialog is open on the screen
I am customizing DatePickerDialog to add some of my functionality for native DatePicker. that is working as expected. But day, month and year fields of DatepickerDialog are editable by default. so ...
0
votes
1answer
48 views
Updating a Dialog
I have a TextView on my Activity which is used to display a date. When the user clicks on the TextView I launch a DatePickerDialog like so:
public void onClick(View v) {
if (v.getId() == ...
1
vote
1answer
447 views
NullPointerException when using DatePicker setMaxDate() in a DatePickerDialog
I am using a DatePickerDialog, and I am trying to set the minimum and maximum dates such that the user can only select a date within the previous 24 hours or next 24 hours.
Here is the code. (Note ...
-2
votes
2answers
121 views
why are widgets displayed differently in different versions of android?
i've an app that has a DatePickerDialog. when i run the same code on different devices run different androids i get a different dialog. I understand the fact that in different versions of android the ...
2
votes
2answers
527 views
How to use OnDateChangedListener,OnDateSetListener without using datepickerdialog?
I want to be able to detect changes on datepicker as soon as user start to change it. However I don't want to use datrpickerdialog. Does anyone know why the onDateSet(DatePicker arg0, int arg1, int ...
0
votes
2answers
219 views
how to change the date displayed on a datepickerdialog?
I have the following widget in my app. Where it says set date is it possible to replace this with the day of week, day of month, month and year. eg wed 07 Nov 2012?
I'm running Android 4 on htc ...
0
votes
1answer
146 views
how to put current date and day of week on DatePickerDialog
I've an app that uses the DatePickerDialog to set a date. If you change the date on the spinner i would like the date and day of week to be shown on the widget. This does happen when run on a samsung ...
1
vote
1answer
170 views
IllegalArgumentException when validating a date on DatePickerDialog (Android)
I'm having an IllegalArgumentException when I validate a date on a DatePickerDialog. Here is the stacktrace:
10-27 19:50:34.700: E/AndroidRuntime(1188): FATAL EXCEPTION: main
10-27 19:50:34.700: ...
0
votes
1answer
113 views
Match DatePickerDialog button order to device locale on Android
The button order on all DatePickerDialog in my app isn't affected by the device's locale. If, for example, I change my locale to a right-to-left aligned language, such as Hebrew or Arabic, the button ...
0
votes
1answer
372 views
Get buttons Datepicker dialog
I am currently trying to change the state_selected orange default color of button of a datepickerdialog.
After searching alot, I manage to change the background of the POSITIVE and NEGATIVE response ...
0
votes
1answer
684 views
onDateSet does not get called from DatePickerDialog on tablet
I am using a DatePickerDialog to prompt the user for a date. It works fine in the simulator and on my Samsung Galaxy Nexus, but onDateSet does not get called on my Samsung Galaxy Tab 2.
I noticed, ...
0
votes
0answers
69 views
AlertDialog crashed after DatePickerDialog
All Hi!
If I show DatePickerDialog and click button negative, next I want show AlertDialog but he crashed. If I show DatePickerDialog and click button_positive - then all is well (AlertDialog can ...
0
votes
1answer
324 views
datepicker dialog using DialogFragment for multiple activities
I need to use DatePicker dialog using the new DialogFragment class for multiple activities.
I am having more than two activities using datepicker and time picker. I succeeded using the example in ...
0
votes
0answers
50 views
How to get object is called DatePickerDialog in qt programming
Here, my file QML :
Column{
id: col4
width: parent.width
Text {
id: text3
color: "#b72323"
...
1
vote
1answer
245 views
How to change locale for DatePickerDialog?
I've read many links about this question and I know that this class is using default locale
but I need to use Armenian locale which isn't in the standart locale of devices. How can I fixed that?
0
votes
1answer
190 views
Robotium: let Solo click on DatePicker in localized build
I am performing a click on the "Set"-button in a DatePickerDialog with Robotium via
solo.clickOnButton("Set");
If I now change the language of the testing device to a different language, Robotium ...
1
vote
3answers
328 views
How to get day, month and year from DatePickerDialog?
I'd like to get day, month and year values for save to db. These are my codes:
Declaretions:
private TextView tv_purchase_date;
private Button mPickDate;
private int mYear;
private int mMonth;
...
1
vote
2answers
335 views
Android datepicker and timepicker issue
The problem that am facing is with the from-to date and time dialog's. I have created all of them separate.
On onCreate i have set the current date and time on the dialog's for the user. i.e for eg ...
2
votes
0answers
2k views
Custom theme for android DatePicker DialogFragment shows unpleasant border
I am trying to use a DialogFragment to host a date picker as recommended by Google here: http://developer.android.com/guide/topics/ui/controls/pickers.html
Using the sample code at the page above ...
0
votes
2answers
828 views
Stop users choosing dates in the past with a DatePickerDialog
This question describes how to do it using a DatePicker widget, but I haven't got anything like that.
I have these:
@Override
protected Dialog onCreateDialog(int id)
{
switch (id)
{
...
1
vote
2answers
2k views
How do you get a DatePicker from a DatePickerDialog?
I have a activity that is popping up a android.app.DatePickerDialog.
DatePickerDialog dialog = new DatePickerDialog(this, startDateSetListener, start_cal.get(Calendar.YEAR), ...
0
votes
0answers
601 views
Android DatePickerDialog title background color
I hope you can see my problem in the below picture. I'm not able to change the background color of the DatePickerDialog's Title. It looks ugly in any custom themes. I have not put any customization to ...
1
vote
1answer
406 views
DatePickerDialog ICS - Get the date to display in the title
I've just recently updated my personal phone to Android 4.0.4. Doing so, I've noticed that the DatePickerDialog which I display in my application is no longer showing the long date format in the title ...
0
votes
1answer
47 views
How do I show the soft keyboard while dismissing DatePickerDialog?
I'm trying to load the soft keyboard while I dismiss a DatePickerDialog. It appears to be a timing issue. The DatePickerDialog still has focus, so attempting to show the soft keyboard does nothing. ...
0
votes
2answers
2k views
DatePickerDialog
I'm trying to get simple DatePickerDialog working code bellow as can be found in Android documentation
import android.app.Activity;
import android.app.DatePickerDialog;
import android.app.Dialog;
...
2
votes
2answers
522 views
how to get the date set in the DatePickerDialog in android?
Solution not found it yet, I have spent a few hours to this challenge.
How can I get a date to see how when you press the "today" button?
Want to get a date that is displayed when you press the ...
2
votes
1answer
108 views
Stopping the DatePickerDialog from closing when use clicks the Set button
I've implemented a DatePickerDialog using the example shown here.
In my implementation of the DatePickerDialog.OnDateSetListener I added validation logic to check that the selected date is within ...
17
votes
3answers
842 views
How to use DatePickerDialog in BaseAdapter
I am working with the BaseAdapter Class. I want to Display DatePickerDialog in it.
When I use showDialog(DATE_DIALOG_ID); I am getting error.
Please guide me regarding this.
package ...
6
votes
2answers
1k views
DatePickerDialog incorrectly enforcing a minimum date of Jan 1, 1970
We have a member reporting that he is unable to set a date before Jan 1, 1970 on our DatePickerDialog. This issue does not repro for us.
I am already aware that the DatePickerDialog does not expose ...



