здесь я использую ежевику 8520 для отображения таймера. я хочу установить время с 10:00:00 до момента начала выбора времени для изменения времени в симуляторе
public void run()
{
//create timepicker by using this method
//by using this simpledateformat we set time format
SimpleDateFormat timeFormat = new SimpleDateFormat("hh:mm:ss aa");
DateTimePicker datepicker = DateTimePicker.createInstance(Calendar.getInstance(),null,"hh:mm:ss aa");
datepicker.doModal();
StringBuffer datestrTime=new StringBuffer();
//by using this method we get date from system date&time
Calendar cal = datepicker.getDateTime();
timeFormat.format(cal,datestrTime, null);
// we are taking the current time from the system and displaying in the label field
time_picker.setText(datestrTime.toString());
}