0
votes
1answer
30 views

Define regular Time instances, get differences between them and currrent Time on Android

There're some objects that each one has certain constant times repeat daily (i.e. 12:30PM, 14, 16, 18 ...); I want to calculate differences between System current time and each time spot to find the ...
1
vote
0answers
23 views

HTML5 input type=time cannot set or retain seconds on Nexus 7 android tablet

I am trying to use an HTML5 input in a form with type=time, on a Nexus 7 running Android 4.2. <html> <head> </head> <body> <form action="save" ...
2
votes
1answer
63 views

Get system time accurate to 0.1ms (100 microseconds)

I am trying to conduct some extremely accurate data measurements. For this, I need to be able to get the current time in microseconds, accurate to 100 microseconds (Or more). I can't seem to be able ...
0
votes
4answers
43 views

How to format a time to a time span?

I am getting a time from facebook graph api in json as ( "2013-05-17T06:47:48+0000" ) now i want to convert it to hour span. For example if a person updated his status at the above time it will show ...
0
votes
3answers
37 views

Build Date object with a date and a time

I receive two Strings, one with a date (say, "15-05-13") and with a time (say, "10:00"). What I need to achieve is make a Date object with both Strings, so I can check if the now Date is < 15 ...
2
votes
1answer
28 views

Time.toMillis(false) of 1/1/1941 always returns -1 if timezone is Pacific/Tongatapu in Android

When I test below code, t1 is -1. Time t = new Time(); t.clear("Pacific/Tongatapu"); t.set(1, Calendar.JANUARY, 1941); t.normalize(false); Log.d("ss", "[onCreate] t1= " + t.toMillis(false)); then I ...
1
vote
1answer
31 views

local notification in android starts immediately rather at the given time

long when = Calendar.getInstance().getTimeInMillis(); when += 10000; NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder( getApplicationContext()) ...
0
votes
1answer
59 views

Android: Measuring time spent on another app from current activity

I have an activity and using an intent I call a certain portion of another app. That is lets say my app A has an activity 1 from which I call activity 1 of app B which I have no control over using the ...
0
votes
5answers
83 views

Have TextView show day of week as letters not integer

I have a textview which shows the day of the week as an integer (0-7). I would prefer if it could convert that to a string, which could then be shown in a TextView. My code is below. Also, how can I ...
0
votes
1answer
34 views

Why is my AlarmManager firing off instantly?

I'm trying to build an alarm application. I had the alarm working before and I was able to set the different times and the alarm would go off appropriately. I then changed the layout of the ...
-1
votes
1answer
33 views

Detect screen press at certain times

So, I am fairly new to java and android programming and I am having an issue coming up with the code for a project I am working on. Basically, there is a list of times, which I assume need to be ...
0
votes
1answer
93 views

Android - Compare Time String to Current Time Subtract Difference and Convert To MilliSeconds

I'm a bit new to Java/Android development and I need to compare two times. One of the time values is stored in a string and the other is the current to the system time (long) - how can I find out the ...
2
votes
2answers
60 views

Simplest Method to Start AlarmManager With Time Value In Standard Format (ex 7:30)

I'd like to start my AlarmManager activity at a time specified by the user however the time string is stored in standard format (ex - 7:30) how can I use the AlarmManager to interact with a long value ...
0
votes
3answers
59 views

Is there a way to get the time of the TimePicker without using the TimePickerDialog?

I want to know if there is a way to get the time that the user has set in a TimePicker on the screen without using a Dialog. I don't see the point in creating a button that will pop up a ...
3
votes
1answer
27 views

How would I check calendar time without abusing battery/RAM?

I'm trying to call a method on a specified time by the user. For example, "at 4:00pm- send a message to Bob". I understand how to get the calendar.HOUR(), calendar.MINUTE(), etc; however, I'm unsure ...
1
vote
3answers
51 views

how to fetch the date and time and save it in textfile android?

I am fetching the gps location once in half an hour and displaying it in textview also saving the values passed in textview to sdcard gpsdata.txt file, using the below code but here i have to save it ...
0
votes
3answers
63 views

Change the button color after a variable time

I'm having a problem to change the button color after a certain amount of time. I know how to change using handle after a fixed time, but I need to change the color after a specific time that is ...
0
votes
0answers
43 views

How to compare Date and then time with time format HH:MM

I need to compare date first and then time with format HH:MM, Is there any simple and direct way to do the same in one method. Example: I need to compare whether the current time is falling betwwen ...
3
votes
2answers
103 views

I want to get time from GSM network

I am using this code but it gives time by wifi..when i turn off wifi,it is not giving me the time... I want to get the time from my GSM service provider... The code which I am using.. LocationManager ...
0
votes
1answer
55 views

Can't create handler inside thread that has not called Looper.prepare() Android. Loop in a timer

I'm trying to receive message from my php server by creating a thread in a service but it doesnt work. can't go in the while loop and the error message as title shows. Please Help. //Set ...
0
votes
3answers
140 views

SimpleDateFormat.getTimeInstance ignores 24-hour format

In my app I have an option to pause execution for a certain amount of time. I want to show the time when the execution will resume, including seconds, and I want the time string to be formatted ...
-1
votes
3answers
98 views

How to save a time from the time picker and compare it

I'm writing an app where I need to get the user set time from the start time time picker, and a user set time from an end time time picker. Then compare the start time and the end time with the ...
0
votes
3answers
55 views

how to get the exact current mobile time in android?

I want to take the exact current time from the mobile and send it to the server. But it varies near 25 mins not exactly..its varying I could not get the correct system time Here i have showed the ...
-2
votes
2answers
88 views

How to set current time to edittext box in android without using time picker?

Can any one tell me how to set the current time in edittext box in android with out using Time-picker. edt_time=(EditText) findViewById(R.id.editText_time); Time t = new Time(); java.text.Time tf = ...
0
votes
1answer
34 views

Android: run thread for an amount of time

In my app I'm making calls to an API to fetch some JSON. Sometimes when people are on 2g network or their network drops the wait time becomes awkwardly long (especially when you show a dialog), thus I ...
0
votes
0answers
52 views

Is input type=time not supported in html5 on android?

I'm trying to use <input type="time"> tag in my html5+phonegap app which is targeting android 4.0+. But like the field appears in chrome or opera (with those 'pickers' for hr:min:sec), I ...
0
votes
3answers
63 views

Datatype for milliseconds

I´ve a time measure system in my app and where I have my milliseconds in a LONG datatype. Now, I want them to convert into seconds, that´s easy by dividing through 1000. What I need is decimal ...
0
votes
1answer
29 views

Group resulting rows by hour of the day sqllite android

There are entries in a table containing 2 columns (integerdata, time). Time is stored in TEXT and is of format HH:MM, which is one of the standard format ( according to sqllite documentation). ...
0
votes
2answers
114 views

How to silence android phone based on set time

I'm trying to write a program that will silence a phone based on a time. So for instance, I press a button the I can set a start time and end time. At that start time the phone will silence. At that ...
0
votes
2answers
51 views

Android - Alarm Manager to run a service at 5am each morning

I need to run my update service at 5am each morning so the data is refreshed when the user picks up their phone in the moring. The code I have so far is - Log.d(TAG, "setAutoRun"); AlarmManager ...
0
votes
2answers
57 views

Time between two button clicks

I´ve two buttons and I want to count the time between two clicks. I know how to do that once: Long starttime = System.currentTimeMillis(); Long endtime = System.currentTimeMillis(); Long ...
0
votes
0answers
54 views

Java Android Get Two Date and Times compared Calendar Functions

I am trying to compare two Date&Time values in Java. My following code returns complete nonsense: Calendar cCal = Calendar.getInstance(); Calendar dCal = Calendar.getInstance(); String[] ...
2
votes
1answer
253 views

distance and travel time in google maps api version 2 android

I want to make an application to display travel time and distance as well as the path to the location of the user's location to the destination location. Here is my TampilkanMap class: public class ...
0
votes
2answers
74 views

Call and dial numbers

I want to program an app to make my life easier. Each time when I go to my work, I have to go to a phone, call a number and press some numbers and give my work id and function to book/ register my ...
1
vote
1answer
90 views

Retrieving the current date and time from a time server

In my Android app, I would like to retrieve the current date/time (UTC) from some server. Android does have the built-in ability to synchronize the device's date and time with some server but I have ...
-4
votes
1answer
37 views

how to play a alram notification for 10 minutes

How to play alarm notification fro a perticular period of time in android ( like for 10 minutes continiously) enter code here: public class AlarmReciver extends BroadcastReceiver{ private static ...
-3
votes
1answer
49 views

Convert date and time to String, ANDROID

I have date and time this format $date:2013-02-19T11:20:16.393Z and I can convert normal format for example: 19.02.2013 11:20:16
0
votes
1answer
72 views

How do I display the time in 12 hour format instead of 24 hour format - timeEt.setIs24HourView(false); is not working

I've created a database which stores the currentHour and currentMinute from a timepicker but I'd like to display it in 12 hour format instead of 24 format and my current implemenation of ...
0
votes
2answers
76 views

Explaination of time format (Google Directions API)

I have read the documentation of the Google Directions API for making a direction request. An example of a URL is given as ...
0
votes
1answer
54 views

Countdowntimer Textview

I created this app and now I wanted to use a textview to show the seconds until the other activity starts but I don't know how,I created a txtview inside the countdowntimer but its never shown ...
0
votes
2answers
112 views

Get Google Calendar Events in an Android App

I just started using Android for app development. I wanted to pull in my calendar events from Google Calendar and then use them for running a counter with the phone's time. As in: If an event starts ...
2
votes
0answers
147 views

Android limit time recording using intent

How can I limit recording when using intents ? I tryed this code: Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE); intent.putExtra("android.intent.extra.durationLimit",5); ...
3
votes
3answers
51 views

How to Compare a Time with two other time provided?

Been confusing.. Like if we are comparing time, string is definitely not recommended... But if it is in the format of (HH:mm:ss). how should i compare them to do something? For example: Target1: ...
1
vote
3answers
105 views

Android String variable (HH:mm) to long variable miliseconds

I have a String variable in this format "HH:mm". Lets say the variable value is 05:30. How would I be able to get those numbers from string and calculate : (05 * 60 * 60 * 1000) + (30 * 60 * 1000) ...
0
votes
2answers
51 views

Is there a way to detect when the user has changed the clock time on their device?

Is there a way to detect when the Android system clock has been reset by the user in Android? I'm designing an app which uses system time to determine when a user is at a certain place at a certain ...
3
votes
1answer
78 views

Setting time in TimePicker and comparing it to calendar.hour and minute?

I have a TimePicker that I need to grab the hour and minute from (-after the user specifies a time and hits the done button) and then compare it to the current hour and minute, doing an action if ...
0
votes
2answers
68 views

How to customize the TimePicker?

I'm creating an app which will have a countdown timer. I would like to choose the time by TimePicker (after clicking a button). I would like to have only a few choices. It is 15,30,45 minutes. ...
1
vote
2answers
89 views

How to get time at current location (from internet)

Possisble duplicate: Get Data from the internet android Hi all, I'm developing an app, it can get real time at current location. My idea is get from internet, but i don't know how to got it. I had ...
0
votes
1answer
53 views

Android Integer as timer wait time

I am trying to make timer wait time to change based on users selection. My timer is working but variable for setting time is not. Formula for waiting ime is ((60/bpm)*1000)-190 and for bpm=60 is give ...
3
votes
4answers
184 views

Format date/time, in milliseconds, to local string in Android

I have a date/time that is specified in milliseconds which is retrieved by: Calendar.getInstance().getTimeInMillis(); I would like to format this to a string that represents the date and time in ...

1 2 3 4 5 9