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.
/* * Copyright (C) 2011 Daniel Berndt - Codeus Ltd - DateSlider *//from www .j a v a 2 s . co m * DateSlider which demonstrates the features of the DateSlider ond how * to adapt most parameters * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.googlecode.android.widgets.DateSlider; import java.util.Calendar; import android.content.Context; public class CustomDateSlider extends DateSlider { public CustomDateSlider(Context context, OnDateSetListener l, Calendar calendar) { super(context, R.layout.customdateslider, l, calendar); } /** * define our own title of the dialog */ @Override protected void setTitle() { if (mTitleText != null) { final Calendar c = getTime(); mTitleText.setText(getContext().getString(R.string.dateSliderTitle) + String.format(": %tA, %te/%tm/%ty", c, c, c, c)); } } }