Skip to content

enjoyfan/TimePickerWithSeconds

 
 

Repository files navigation

TimePickerWithSeconds

Android TimePicker widget with seconds field as well. This widget is an extension of native TimePicker which provides only minute and hour fields.

alt tag

Aplication

The demo application (.apk) is under the root dir : TimePickerWithSeconds.apk

Quick Setup - Gradle

dependencies {
    ...
    compile 'com.kovachcode:timePickerWithSeconds:1.0.1'
}

Quick Setup - Eclipse

This is Android library project. To use it within your application follow these steps:

  1. Download the project to your workspace
  2. Import project into Eclipse
  3. Right click on YOUR project - > Properties -> Android Under the library choose "Add" and add TimePickerWithSeconds project

Usage

Show the Picker with:

MyTimePickerDialog mTimePicker = new MyTimePickerDialog(this, new MyTimePickerDialog.OnTimeSetListener() {

			@Override
			public void onTimeSet(TimePicker view, int hourOfDay, int minute, int seconds) {
				// TODO Auto-generated method stub
				/*time.setText(getString(R.string.time) + String.format("%02d", hourOfDay)+
						":" + String.format("%02d", minute) + 
						":" + String.format("%02d", seconds));	*/			
			}
		}, now.get(Calendar.HOUR_OF_DAY), now.get(Calendar.MINUTE), now.get(Calendar.SECOND), true);
		mTimePicker.show();

Enjoy!

Licence

Feel free to use and change this code and include it in any of the projects you wish. There is no guarantee of any kind.

About

Android time picker with seconds field

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%