[android-developers] date pickers

2013-02-21 Thread Arun Kumar K
Hi guys, i want to disable the past dates in date picker can any one help me pls -- *Thanks Regards* *K.Arun Kumar* -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] date

2012-09-08 Thread mohammed Nuhail
for date you have to give Date as datatype On Fri, Sep 7, 2012 at 9:28 PM, TreKing treking...@gmail.com wrote: On Fri, Sep 7, 2012 at 3:31 AM, Sadhna Upadhyay sadhna.braah...@gmail.com wrote: how to store date in sqlite and do sql query on date A: This is not specific to Android. B:

[android-developers] date

2012-09-07 Thread Sadhna Upadhyay
Hi, how to store date in sqlite and do sql query on date -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] date

2012-09-07 Thread TreKing
On Fri, Sep 7, 2012 at 3:31 AM, Sadhna Upadhyay sadhna.braah...@gmail.comwrote: how to store date in sqlite and do sql query on date A: This is not specific to Android. B: http://justfuckinggoogleit.com/

[android-developers] date difference excluding weekends

2012-08-07 Thread Ibrahim Sada
Hi Friends.. Can any one help me out how to do calendar date differnece excluding weekend.? Thanking you in Advance. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] date difference excluding weekends

2012-08-07 Thread Justin Anderson
This has nothing whatsoever to do with Android. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Aug 7, 2012 at 1:19 AM, Ibrahim Sada ibrahim.in...@gmail.comwrote: Hi Friends.. Can any one help me out how to do calendar date differnece

[android-developers] Date Picker

2012-07-10 Thread nageswara rao rajana
Hi, How to implement Cancel button in DatePickerDialog ? thanking you, nagu. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

Re: [android-developers] Date Picker

2012-07-10 Thread arun kumar
Hai Nagu, Refer this code snippet dialog.setButton(DialogInterface.BUTTON_NEGATIVE, getString(R.string.cancel), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { if (which == DialogInterface.BUTTON_NEGATIVE) {

[android-developers] date format problem

2012-03-30 Thread Eyal Berman
i try to format a date from XML file the date is in the format Thu, 15 Mar 2012 00:00:00 +0200 i use that code but get an error SimpleDateFormat formatter = new SimpleDateFormat(E, dd MMM HH:mm:ss Z); Date date = formatter.parse(Thu, 15 Mar 2012 00:00:00 +0200); SimpleDateFormat

Re: [android-developers] date format problem

2012-03-30 Thread jagruti sangani
you can use calender also for the getting the current date and time.also you can get separate form that.But in which format you want? On Fri, Mar 30, 2012 at 12:35 PM, Eyal Berman bermane...@gmail.com wrote: i try to format a date from XML file the date is in the format Thu, 15 Mar 2012

Re: [android-developers] date format problem

2012-03-30 Thread Ralph Bergmann | the4thFloor.eu
Am 30.03.12 09:05, schrieb Eyal Berman: i try to format a date from XML file the date is in the format Thu, 15 Mar 2012 00:00:00 +0200 try this: /** * Thu, 04 Aug 2011 09:00:00 +0200 */ protected static final SimpleDateFormat FORMATTER_StringToDate = new SimpleDateFormat(E, dd

[android-developers] Date format issue with different locale

2011-12-12 Thread ToolAndroid
When I change the locale from English to Espanol, issue with uppercase/ lower case for month and am/pm. --- Dec 11, 2011, 11:54 PM to dic 11 2011, 11:54 p.m. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] date and time

2011-11-01 Thread leigh8347
hello im making an app that writes to a .txt file and at the end of each save i want to put the date and time. this is my code that turns the time/date into a string. which works fine. SimpleDateFormat dateFormat = new SimpleDateFormat(dd/MM/ hh:mm:ss); java.util.Date date = new

[android-developers] Date issue

2011-10-20 Thread sourabh sahu
I have a editText view on a click of it there is a date picker.When I extract the date in a string format and then convert it into date datatype.I am getting it in milliseconds.I want the exact date. I have used SimpleDateFormat with -MM-DD and Locale.US and parse function.Please suggest some

Re: [android-developers] Date issue

2011-10-20 Thread Justin Anderson
What does your code look like? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Oct 20, 2011 at 2:01 AM, sourabh sahu souruit...@gmail.com wrote: I have a editText view on a click of it there is a date picker.When I extract the date in a string

[android-developers] Date Problem with mySQL

2011-09-04 Thread Atif Musaddaq
Hi, All Facing small problem in my Android App. I am getting 4 values from the user including current date which user can change. Date format is -MM-DD Code // this is for Date to be displayed private void updateDate() { mDateDisplay.setText( new StringBuilder()

[android-developers] date parsing

2011-08-18 Thread bob
I'm using this code to try to parse a date: Date myDate = DateFormat.getDateInstance().parse(s); However, I get this: java.text.ParseException: Unparseable date: Sun, 19 Jun 2011 02:28:34 -0500 Any ideas how I can easily parse a date in that format? -- You received this message

Re: [android-developers] date parsing

2011-08-18 Thread Daniel Drozdzewski
On 18 August 2011 16:45, bob b...@coolgroups.com wrote: I'm using this code to try to parse a date:        Date myDate = DateFormat.getDateInstance().parse(s); However, I get this: java.text.ParseException: Unparseable date: Sun, 19 Jun 2011 02:28:34 -0500 Any ideas how I can easily

[android-developers] Date Picker using xml layout - problem in android app

2011-07-28 Thread Sivasankar K
i have some problems in using the date picker from xml layout. in my app when the user clicks a text view a custom dialog box opens. In the layout of the custom dialog box i am showing a date picker which i have place in my xml file. When it appears in the app i want a particular date to be

Re: [android-developers] Date Picker using xml layout - problem in android app

2011-07-28 Thread TreKing
On Thu, Jul 28, 2011 at 2:33 AM, Sivasankar K sivasanka...@greatinnovus.com wrote: When it appears in the app i want a particular date to be viewed, for example as 01 Jan 1950. Every time it opens it is showing the present date only. Are you setting the date to display ... ? In my dialog

[android-developers] Date Query

2011-07-25 Thread kirti waykole
hello , I am new in Android. I am trying to make reminder system. i made 1 database and storing all data in that database. now i want to get date from database in (dd/mm/) format. I want to compare that date with system . Plz guide me how can i do this. thanks in advance -- You received

Re: [android-developers] Date Query

2011-07-25 Thread TreKing
On Mon, Jul 25, 2011 at 6:56 AM, kirti waykole kirti.carr...@gmail.comwrote: now i want to get date from database in (dd/mm/) format. I want to compare that date with system . Plz guide me how can i do this. Read the documentation for Date, or use Google - this has nothing to do

[android-developers] Date display in in SimpleCursorAdapter

2011-04-29 Thread Brad Stintson
I use following code to display title and date from database. The date is in long format. How can I display it in string form using a function. Cursor eventsCursor = db.retrieveProEvents(pro_id); startManagingCursor(eventsCursor); String[] from = new

Re: [android-developers] Date display in in SimpleCursorAdapter

2011-04-29 Thread Mohammed Hossain Doula
just concatenate that long value with a non-space quoted value then you can convert easily... On Fri, Apr 29, 2011 at 12:47 PM, Brad Stintson geek.bin...@gmail.comwrote: I use following code to display title and date from database. The date is in long format. How can I display it in string

Re: [android-developers] date picker and froyo

2011-03-08 Thread TreKing
On Fri, Mar 4, 2011 at 7:05 PM, Doug douglascroc...@gmail.com wrote: it is causing the app to crash when I try to view the date picker with Froyo or the Emulator with version 2.2 A callstack might help.

[android-developers] date picker and froyo

2011-03-07 Thread Doug
All, did something change with froyo around datepicker? I'm working on an app that uses a datepicker, works fine with Eclair but it is causing the app to crash when I try to view the date picker with Froyo or the Emulator with version 2.2 -- You received this message because you are subscribed

Re: [android-developers] Date/time format change broadcast

2010-10-07 Thread Filip Havlicek
Hi, yes, you actually are - ACTION_TIME_CHANGED and ACTION_DATE_CHANGED. Best regards, Filip Havlicek 2010/10/7 Zsolt Vasvari zvasv...@gmail.com I am using android.intent.action.LOCALE_CHANGED to detect language changes and update my widgets. Is there something analogous for date and time

[android-developers] Date/time format change broadcast

2010-10-06 Thread Zsolt Vasvari
I am using android.intent.action.LOCALE_CHANGED to detect language changes and update my widgets. Is there something analogous for date and time format changes? I don't see anything, but I could be just blind -- You received this message because you are subscribed to the Google Groups

[android-developers] Date type as a parameter on a SoapObject

2010-05-21 Thread Lamia Hannoun
Hi ! I want to send a parameter to my .net webservice, but it's type (Date) causes errors. Any ideas about how to make it work. Thx. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Date Picker Limit

2010-04-29 Thread Chirayu Dalwadi
How to limit date picker for six months from today's date? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Date Limit

2009-08-29 Thread Sasi Kumar
How can i display datepickerdialog for a limited dates. Ex:- I want from 25 aug 2009 to 24 Aug 2010 please reply Join http://groups.google.com/group/mobile-application-developers --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Date Limit

2009-08-29 Thread Sasi Kumar
Can any one suggess that i want a limited datepicker ex:- 25 aug 2009 to 24 aug 2010 please reply Join: http: //groups.google.com/group/mobile-application-developers --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Date Picker

2009-08-29 Thread Sasi Kumar
I want a date picker with maximum of 3 days. i want like yesterday today tomorrow this 3 days only i want. any one can sugess some idea. please reply. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Date AND Time Picker

2009-07-31 Thread Brad Gies
I think I asked this a few months ago, but didn't receive an answer. Has anyone done a combination Date AND Time Picker that fits on one screen? What I'm looking for is something that looks like the built in Android Date picker with the Time Picker below it and the Set/Cancel buttons below

[android-developers] date data type issue in Andriod

2008-07-08 Thread Billsen
Hi, How to save data with timestamp data type into SQLite database. The method put in class ContentValues does not accept date data type. Thanks, Senshan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Date and time pickers in an XML layout file - how to get to work?

2008-04-08 Thread NTR
I've tried including date and time pickers in the XML file, like the following: DatePicker xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=wrap_content android:layout_height=wrap_content / TimePicker