Following requests to share code with Calendar View implementation, I managed to compile two projects. Simple calendar view with only Gregorian Calendar – SimpleCalendar.zip This implementation differs from this one in three main features: Implemented custom DateSlider from Codeus Progress indicator on Calendar view load dynamic week days display, instead of static image Simple calendar… Continue reading android: Simple Calendar View
Tag: datepicker
Android DateSlider with Calendar View
I implemented Month/Year selection by DateSlider for Calendar View. Now on click the button with the name of selected month, there will appear a dateslider dialogue. Select month and year and calendar will be show selected month. edit the following code: find the line currentMonth.setText(dateFormatter.format(dateTemplate, _calendar.getTime())); currentMonth.setOnClickListener(this); in public void onClick(View v) function add the… Continue reading Android DateSlider with Calendar View
Jquery DatePicker icon position
For one of my projects, I was looking for a datepicker, simple and lightweight. I found such – jQuery date picker plug-in, developed by Kelvin Luck (http://www.kelvinluck.com/). It suits all my needs, except one – it placed icon always after the text input box. To make possible to place it before the input box, I… Continue reading Jquery DatePicker icon position
Custom DatePicker for Android
I don’t understand why Android SDK doesn’t provide similar sexy DatePicker widget as does HTC for their phones. I really like their skin for a DatePicker in Calendar I wanted similar for my app, but actually I found even better. People at Codeus don’t like standard DatePicker from Android also. And they created a really… Continue reading Custom DatePicker for Android