Back to project page vitdroid-android.
The source code is released under:
Apache License
If you think the Android project vitdroid-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.googlecode.android.widgets.DateSlider.labeler; /*from w w w . j a va2 s. co m*/ import java.util.Calendar; import com.googlecode.android.widgets.DateSlider.TimeObject; /** * A Labeler that displays hours */ public class HourLabeler extends Labeler { private final String mFormatString; public HourLabeler(String formatString) { super(90, 60); mFormatString = formatString; } @Override public TimeObject add(long time, int val) { return timeObjectfromCalendar(Util.addHours(time, val)); } @Override protected TimeObject timeObjectfromCalendar(Calendar c) { return Util.getHour(c, mFormatString); } }