The android-date tag has no wiki summary.
0
votes
3answers
72 views
Get current time in a given timezone : android
I am new to Android and I am currently facing an issue to get current time given the timezone.
I get timezone in the format "GMT-7" i.e. string.
and I have the system time.
Is there a clean way to ...
0
votes
5answers
98 views
Convert time value to format “hh:mm Am/Pm” using Android
I am getting date value from database like "2013-02-27 06:06:30"
using StringTokenizer I will get time separately like below
String startTime = "2013-02-27 06:06:30";
StringTokenizer token = new ...
3
votes
1answer
45 views
Android Display a date of the week
i want to display the days of the week with the date of that week.
Like today, i want to display for my calendar is like this:
Mon Tues Wed Thurs Fri Sat Sun
8 9 10 11 12 13 ...
0
votes
2answers
31 views
how can I can keep my variable stop resting when i move to a different activity?
Hello I have couple of activities in my app and I want to be able to move between them without to worry that my variable values will get restart every time. I tried to use share permanences but it ...
0
votes
2answers
41 views
how to clear data and chach in app using code
Hello I have an app that I'm developing and I want to clear all of its data when its getting close. I don't mind if it will need to add permission or something like this. also I need it will clear all ...
1
vote
4answers
109 views
How to compare two Date and Time and get Day,Month,hour,min in Android?
I Have this type of Date in String Format 01-18-2013 06:43:35 Now, i want to compare this Date with Current Date and Time and get Day, Month, Hour, Min, .. I Searched this link but didn't get any ...
0
votes
1answer
77 views
how to change view of date picker and display like calender in datepicker in android?
**
Developing Daily Expense Application in Android
**
I have seen many android application where user can select Date from date picker.
In my application I have used date field in ...
0
votes
2answers
146 views
Covert UTC time format to local time [duplicate]
I have a UTC time in this format 2013-03-04T14:37:15 How can I convert this into local time and then to one minute ago format.
I tried this first to convert the time to local format:
private String ...
0
votes
3answers
77 views
Dates are not getting compared?
I am comparing dates in my android application, how ever for my equal dates, compareTo or equals method returns me that dates are not equal. I have debugged through and I can see both my objects have ...
0
votes
3answers
85 views
Formatting Long value to Date String?
I am working on an application in which I have to convert a long value to a Date string and display. To achieve the purpose I am using following function, but it is returning me the date from 70's and ...
0
votes
2answers
78 views
Hours and minutes from date in android
I have java util date as Thu Feb 28 15:35:00 GMT+00:00 2013
How to convert it to HH:MM.
I am trying to do this via below snippet:
SimpleDateFormat formatter = new SimpleDateFormat("HH:MM");
...
0
votes
3answers
109 views
Android get Date difference
I want to implement Question of the day feature in my application. If user use that feature once in a day he can not be able to access that till the day change. I am able to fetch when the feature ...
0
votes
0answers
25 views
How to get Facebook Time and date in Android APP
Need to get same time format of Facebook.i cant able to get response of same FB time format.Any one knows please help me .thanks
1
vote
4answers
172 views
How to get only the year from DateUtils
How do i get only the year part of a date using DateUtils ? I tried using
DateUtils.FORMAT_SHOW_YEAR
but this seems to return even the month and date.
0
votes
1answer
81 views
how to set date for from and to with validation
I am new to android, can any one post the code for the below scenario.
i have to set date for "from" and "to" with validation, that is "to" date should be greater than "from" and "from" date should ...
0
votes
1answer
56 views
How to format the output of the date-object (not as string)?
I'm trying to pass a Date-Object to a SOAP-API and need the output of the date-object itself to be yyyy-MM-dd
I'm already converting my string into a date-object like this:
// String __startDatum = ...
1
vote
0answers
243 views
Android CalendarView: Run activity when click selected date
I am using a CalendarView to display a calendar, and I want to launch an activity when a specific date is clicked. I got it to work when a different date is clicked, but not when today's date is ...
3
votes
1answer
122 views
Unexpected side effects when parsing dates in Android
In various Android projects, I use the following static function to parse dates such as 1900-12-31. Of course, this function should be deterministic - but it turns out it is not. Why?
Normally, it ...
0
votes
3answers
230 views
How to convert current date and time format in milliseconds(only 10digits)?
I have converted date format in milliseconds and time format in milliseconds. I am getting current time in more than 13 digits. CurrentTime= 1357755780000, StartingTime=1357602840, ...
1
vote
2answers
134 views
compare date with millisecond in android
I have date in this format "23-March-2003" and time in milliseconds which include date+time.
Now I want compare this date with millisecond either it is same date or not. how can I do this??
0
votes
2answers
100 views
Select Previous Date (Decerement by 1) And Convert To Unix TimeStamp
I am trying to fetch Newsfeed using the Facebook (API) FQL.
In an attempt to page results, I was initially using LIMIT and OFFSET parameters like this:
SELECT post_id,.... FROM stream WHERE ...
2
votes
3answers
73 views
comparing millliseconds with data in android
I have data+time in saved in database (sq lite) in milliseconds, now I want to get data from sq-lite of a specific date and I have date in this format "26-December-2012", how to compare this with ...
0
votes
4answers
138 views
how to get date from milliseconds in android
I have time in milliseconds, now I want to separate time and date from these milliseconds.
how can i do this???
1
vote
1answer
291 views
What is the difference between SimpleDateFormat and android.text.format.DateFormat?
From reading about them I understand that the android class is a utility class made for convenience only, and provide nothing that SimpleDateFormat doesn't provide. Is there any significance to the ...
-1
votes
5answers
158 views
android - java.lang.IllegalArgumentException when no of days difference between two date [closed]
In my app i count no of days difference between old date and new date with the following code. it work good on android 2.2 and 2.3.6 devices but on android 4.0 device it is get crashed with ...
1
vote
2answers
658 views
Get current date as String warning deprecated toGmtString() issue
I want to get the current date day/month/year min:sec in Android so I have used the follow code
String data="";
Calendar c = Calendar.getInstance();
data=c.getTime().toGMTString();
But Eclipse ...
1
vote
2answers
580 views
How to save Data and Time from TextView to SQLite?
In my app I have 2 buttons which opens a Time Dialog/Date Dialog and then I select the date and time and then press OK. Thefore the value gets shown in a TextView (for each one), so I need to get the ...
0
votes
1answer
295 views
How to highlight some dates on calendar in android
I'm doing calendar application in android.My code from : http://code.google.com/query/#q=android%20calendar
here i can pick up date from calendar.But i need to mark some date on it.for ex.when i gave ...
0
votes
1answer
248 views
Time zone offset format +HH:mm versus +HHmm
I need to communicate with one application that is not implementing the full ISO 8601 and only accept the format +HH:mm for time zone offset.
Android seems to only generate the format +HHmm (no ':' ...
0
votes
1answer
140 views
how to get date from 12 hour format to 24 hour format in android
hello I have date like..
String date="09:00 AM"
But I need 09:00:00
So I use following.
String date="09:00 AM"
SimpleDateFormat f1 = new SimpleDateFormat("hh:mm:ss");
Date d1= ...
-1
votes
3answers
314 views
Wrong date while using date.setTime() with date/time format by JSON data
I got a date/time format data from
http://earthquake.usgs.gov/earthquakes/feed/geojson/all/hour
here's a quote of data:
"properties":{
"mag":0.5,
"place":"123km NNW of Talkeetna, Alaska",
...
0
votes
1answer
127 views
get date format from given date in android
Hello i am new in android. Can anybody help me to find how i get date format Sun 15th July from 2012-07-15? I found examples but each of it is for various different date-formats. Please help me to ...
0
votes
2answers
514 views
genarate dates between two date in android
Hello i am new in android. How to get all dates between two dates in android.
For example. I have two Strings.
String first="2012-07-15";
String second="2012-07-21";
I convert and get dates from ...
0
votes
0answers
315 views
Android time conversion with given format
I want to get system time with a given format. I am using following code block. First I am getting the time as a string in the format which I want, then I try to convert it to real Date object, but it ...
0
votes
2answers
129 views
Seconds not updating in onDraw()
I have a simple graphics application which draws some stuff on the screen. Before, I had no problem when I was calling invalidate() in onDraw() without a check. In my application onDraw() is called ...
0
votes
3answers
97 views
setting particular date to Date object
I've been trying this from a long time.
I'm having today's date and I want to compare it with specific date.
But when I set particular date like this, it gives me wrong output:
Calendar cal;
...
0
votes
4answers
1k views
Android: Date Format in Month date year
My date in the application is displaying as 07/10/2011(dd/MM/yyyy)...I want date to be in the format Oct 7,2011 in android coding. Please help as am newbie to Android
1
vote
2answers
729 views
SQL Between operation in android sqlite date is not working?
I am new to android development. I been working on this for one day and i couldn't figure out whats the exact problem is because my query is running without error but no result.
My database query ...
0
votes
1answer
517 views
how to retrieve values from the database(Sqlite) by using date in android?
I have stored the date as string in sqlite database table. What i need i i have to retrieve the values which stored in last seven days. I have tried by using following but it doesn't showing any ...
0
votes
1answer
2k views
Android SimpleDateFormat format issue
I am trying to format a date into required format. but i receive wrong date out put.
here is what i am doing.
I receive the dates as following:
3/24/2012 8:25:03 AM
3/23/2012 2:57:01 PM
3/15/2012 ...
-1
votes
1answer
105 views
Logical Time Display in android
My android application needs to display time which has to be incremented according to a logical check
my condition example is below
d = (String) DateFormat.format("yyyy-MM-dd,hh:mm:ss", new ...
1
vote
3answers
1k views
Android Java.DateUtils how to change date format?
I'm using the following:
DateUtils.getRelativeDateTimeString(context, created, DateUtils.MINUTE_IN_MILLIS, DateUtils.WEEK_IN_MILLIS, DateUtils.FORMAT_ABBREV_MONTH);
It shows the date in a US format ...
0
votes
1answer
229 views
Is there an existing algorithm for comparing dates/longs to Minutes?
I want to compare a "now" long/date value minus a "last notification time" long/data value to an integer value representing an interval of minutes before a new notification is made.
I know I cannot ...
5
votes
2answers
722 views
How to Compare system date with mydate in android 2.1?
in my Android application, i am taking date and time from database. but i am not able to get the date in the "Date" Format from the database into my application, the date is in string format, so i am ...
2
votes
1answer
2k views
Date comparison in Android application
I have 2 dates in string format like DD/MM/YYYY. Now I have to write the condition if date1 is before date2. How can I do this? Please help me.
0
votes
2answers
324 views
Calendar showing wrong date and time
final Calendar c = Calendar.getInstance();
Toast.makeText(alarm.this, " "+c.DAY_OF_MONTH+ " " +c.MONTH+ " " +c.YEAR ,
Toast.LENGTH_LONG).show();
this code ...
0
votes
1answer
602 views
Date getMonth() in java from 0-11 messes up searches in database?
Second EDIT:
Looks like my issue might be where the date is set from the date picker dialog:
// the callback received when the user "sets" the date in the dialog
private ...
0
votes
2answers
386 views
SQL statement doesnt return value between two dates
I'm trying to select a specific date between two dates. The forma its stored in the DB is M/d/yyyy. What I'm trying to do, is passing two dates, and I want to select all data of a column between this ...
-2
votes
1answer
344 views
Error While creating Date Picker in Android?
i got this error while creating date picker in android "Syntax error on tokens, AnnotationName expected instead"
public class Insert extends Activity {
private Header header;
private ...
3
votes
3answers
1k views
Converting date-string to a different format
I have a string containing a date in the format YYYY-MM-DD.
How would you suggest I go about converting it to the format DD-MM-YYYY in the best possible way?
This is how I would do it naively:
...






