Git Product home page Git Product logo

timepickerwithseconds's Introduction

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.0'
}

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.

timepickerwithseconds's People

Contributors

ivankovac avatar verma-ady avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.