What field type is the Set Timer field on the Blackberry? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:05:03Z http://stackoverflow.com/feeds/question/926156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/926156/what-field-type-is-the-set-timer-field-on-the-blackberry 0 What field type is the Set Timer field on the Blackberry? Ben S 2009-05-29T14:06:08Z 2009-05-29T17:50:46Z <p>I'm writing an application which has an interval time as a parameter and would like a field similar to the one the Timer has to set its time. Values of a few seconds to a few hours make sense for the application.</p> <p>What type of field should I use?</p> http://stackoverflow.com/questions/926156/what-field-type-is-the-set-timer-field-on-the-blackberry/927270#927270 1 Answer by Anthony Rizk for What field type is the Set Timer field on the Blackberry? Anthony Rizk 2009-05-29T17:50:46Z 2009-05-29T17:50:46Z <p>Looks like a custom field. </p> <p>Your choices with built-in fields are: <code>net.rim.device.api.ui.component.NumericChoiceField</code>, which basically acts like a drop-down with numbers in it (not great when you're talking about 60 minutes/seconds, but if you want to constrain to say 5 minute intervals or something it might be ok).</p> <p><code>net.rim.device.api.ui.component.EditField</code> with a custom <code>net.rim.device.api.ui.text.TextFilter</code> (you could use a <code>NumericTextFilter</code>, but that wouldn't constrain you to 0-60, it'd allow any numbers).</p> <p>Or you can roll you own. See <a href="http://www.thinkingblackberry.com/archives/167" rel="nofollow">this article</a> for a start on creating custom fields. You'll probably want to override <code>navigationMovement</code> to make the numbers increment/decrement on trackball up &amp; down, and to move the focus within the field while going left &amp; right - setting an internal state variable indicating where the focus is and overriding <code>getFocusRect</code> to return an appropriate focus rectangle (be sure to call <code>focusRemove</code> and <code>focusAdd</code> from within <code>navigationMovement</code> to let the framework know you've updated the focus). </p>