Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
16k views

Android - Get time of chronometer widget

I have a Chronometer widget in my Android app. I was wondering how to get the time from it. I tried getText, getFormat, getBase, etc, but none of them work. This is probably a easy question, but I ...
4
votes
5answers
349 views

Android Chronometer, retain time state (and keep counting in background)

I have a timer that counts up from the time a user encounters that activity I am currently using a Chronometer set during onCreate (initially started only when certain conditions are met). But I need ...
2
votes
1answer
33 views

How can I set the start time for a chronometer

I have an application that has a chronometer, I need to set the start time to a difference between to dates How can I do that?
2
votes
1answer
64 views

Android milliseconds

So I'm trying to write a stopwatch app that displays time in milliseconds, but for some reason it won't work. Basically I have just a togglebutton that, after being pressed, starts printing the ...
2
votes
1answer
132 views

What is the best timer technique for exact one second intervals?

I am writing a simple timekeeping app for a specialized outdoor sport. The app performs a series of calculations every second, and displays information of interest to the user. Elapsed time is key to ...
2
votes
1answer
311 views

Android_Chronometer pause

I want to pause chronometer and after I click the button I want to continue chromoneter to count... I search but couldn't a function related this.. how can do it?
2
votes
3answers
2k views

Show milliseconds with Android Chronometer

I'm looking for a way to make the Chronometer in Android (preferably 1.6 and upwards) show 10ths of a second while counting up. Is it possible to do this? If not, is there a free (and preferably open ...
1
vote
1answer
96 views

Android Chronometer own implementation

I've developed an own implementation of a Chronometer. I did the follow: Create a Service (CronoService), that use a Runnable object that execute the thread. The Runnable will loop each 0.1 secs. ...
1
vote
1answer
172 views

How to create a accurate chronometer, matching real time?

I'm working in an educational software, mostly developed using Flash AS3, and we have a chronometer which shows different values through different users. Example: Two users starting the chronometer ...
1
vote
1answer
166 views

how to make android chronometer invisible and visible when clicked

I am working on app which has a titlebar with chronometer on the left and a textview centered in a RelativeLayout. RelativeLayout take height of textview and fill screen width <RelativeLayout ...
1
vote
3answers
558 views

chronometer doesn't stop in android

in my app i am want to show a stop timer watch. When i searched through Google i found an option called Chronometer in the developers site. It look's just like a stop timer watch. When i click the ...
1
vote
2answers
550 views

R.layout.chronometer cannot be resolved or is not a field- android error

I tried simple stopwatch program from http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ChronometerDemo.html. The following error is coming ...
1
vote
1answer
413 views

Android: Chronometer in ListView Row?

I got a row xml for my ListView with chronometer <LinearLayout android:layout_width="fill_parent" android:id="@+id/layout_orders_list_row_ll_Timer" android:focusable="false" ...
1
vote
2answers
595 views

Android chronometer ticks once and stops

I need to hide a TextView after 10 seconds. I thought I could implement a Chronometer and when elapsed time is bigger than 10000 millis I hide the TextView. My problem is that the chronometer only ...
0
votes
2answers
34 views

How to initiate events based on stopwatch timer?

Basically I'm working on an application that alerts drivers how long they have been driving. It requires alerts at certain times. At the moment I'm using a chronometer that displays time passed. As ...
0
votes
0answers
39 views

How can i use a Chronometer to countup and display on multiple textviews?

Im just wondering if it is possible, i managed to get the chronometer working with a blank textview but it is beyond my current knowledge of how to get the output to display on seperate textviews, 1 ...
0
votes
0answers
22 views

the Android chronometer object stops to call the 'TickListener' when onPause()

I run a chronometer instance in my app. When the app switch to the onPause() status the chronometer stop calling the 'onChronometerTick' methods attached via the: ...
0
votes
0answers
47 views

Android Custom Chronometer

I want to create a custom Chronometer with miliseconds.Because android Chronometer object doesn't show miliseconds.For this i have tried this code but i slows down my device and it uses a lot of CPU ...
0
votes
1answer
107 views

Android: Chronometer with Miliseconds?

What I want is to measure time with miliseconds, but using Chronometer has the problem that it has no accuracy (its most resolution is seconds) I've seen this: Show miliseconds with Android ...
0
votes
0answers
33 views

Chronometer between 2 activities

I have an activity named myActivity which has a chronometer. I call setbase and start in onCreate(). Then I want to start another myActivity to overlap the previous one. (assume we do this on 00:40) ...
0
votes
2answers
94 views

Check if Chronometer is running

chronometer in android how to check whether chronometer is running or stop? if start then i want to stop it and if not running then start chronometer.
0
votes
1answer
60 views

Android: Synchronize Chronometer with MediaPlayer

I'm using SeekBar in my application and when user seeks it should reset teh chronometer apporpriately. I wrote the code as below. chronometer.setBase(SystemClock.elapsedRealtime()); ...
0
votes
2answers
114 views

Android: How to pass reference of a Button in Adapter to Activity

All, I have a listview filled with Buttons that start and stop a chronometer timer. Each timer is also set inside each row of the listview. Inside the activity, I have a global start and stop ...
0
votes
1answer
123 views

How to make android activity run in parallel

I have two class, one is an activity that can handle Chronometer, another is handle LocationListener.I want to run them together to use stopwatch and to get changed location. Anyone have any samples ...
0
votes
1answer
535 views

Set HH:MM:SS of Chronometer

I knew the format of chronometer can be MM:SS or HH:MM:SS, but I want to know how to use setFormat() and getFormat() to set HH:MM:SS pattern(now is MM:SS). At this time, I use: ...
0
votes
1answer
126 views

Android: Cannot cast from View to Chronometer

I try to follow this example ChronometerDemo.java, but I got some problem: I can't import android.widget.Chronometer; Error: conflicts with a type defined in a same file(import ...
0
votes
0answers
293 views

Chronometer in Android App

I use a Chronometer in my Android app. It works fine, but when I want add a few TextView with id (in xml file), application stops with error: "...has stop enexpectedly". TextView without id works. ...
0
votes
0answers
183 views

TimeSpan: C# & SQL 2005 Time conversion with nHibernate

I'm managing a Time stamp in my application, the thind is I don't care about the date, think it as a chronometer wich has minutes, seconds and miliseconds. In my class on C# I've defined it as ...
0
votes
1answer
823 views

Chronometer reset

I am trying to completely restart Chronometer and its does not work. Instead it is being paused. Basically what I am trying to do is to do something while chronometer is counting till 10. After its ...
0
votes
2answers
345 views

Android Screen Orientation Problem

Hi i have a problem like, I have a chronometer its shows recording time if i press a record button of a live video streaming, both are dynamic. Once i clicked the record the recording will takes place ...
0
votes
4answers
878 views

popup menu for spinner in android

i want a spinner with items'A','B','C' if u select 'A' or'B' means the chronometer has to run. while select the item 'C' the popup window has 2 open with edittext and 'Ok' button.. if you type ...
0
votes
2answers
203 views

Problem starting with chronometer

My chronometer is always starting from 0:10 or like some other times... it s not starting from 0:01 itself..any one can help me Thank you,
0
votes
0answers
95 views

chronometer run- android

Am having 3 xml pages.In one page am having chronometer ... after start chronometer if i went to the other pages means too the chronometer has to run it wont to stop... any can help me thankyou,
0
votes
1answer
464 views

Android Sync video with timer

I'm using Android to construct a video player using the VideoView. I've managed to get a video player running and now I'm setting a counter using chronometer that starts ticking when I select the ...
0
votes
1answer
125 views

tiny time tracker in android

now am trying tiny time tracker in android .. http://tinytimetracker.sourceforge.net/php/ In the URL tiny time tracker code is available in java . now i need to convert that java to android.. can ...
0
votes
1answer
438 views

Android Chronometer doesn't start

I have a view and I want to add a chronometer onto it. Then, on draw I want to display the current time. Here is how I did: public class MyView extends View { private Chronometer chrono; ...
0
votes
0answers
527 views

Add a stopwatch like label

I'm searching a way to display the time elapsing during the reflexion of the application user. example : UILabel displaying 0:01, 0:02, 0:03 etc until the user click on a button. I guess NSTimer ...
0
votes
2answers
6k views

Android: chronometer as a persistent stopwatch. How to set starting time? What is Chronometer “Base”?

I do have one service running in the background. Whenever it starts I store in memory the starting time in milliseconds: startingTime = new Date().getTime(); I want to display a chronometer that ...
0
votes
1answer
618 views

Android: extended android.widget.Chronometer and main.xml

I've extended android.widget.Chronometer like so: public class PausableCountdownTimer extends Chronometer implements OnChronometerTickListener { I would like to be able to add this widget to my ...
-1
votes
1answer
64 views

Creating a chronometer in Android

I'd like to know how can I implement in Android a simple chronometer with a start and stop button that displays data in the HH:MM:SS:MsMs format... I've been searching and searching and I have found ...
-1
votes
1answer
45 views

Android Chronometer with miliseconds

I want to create a chronometer with miliseconds.Android has this chronometer but how can we implement it into own application?