android: Simple Calendar View

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

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

Android Calendar with Jewish calendar dates, holidays and zmanim

Android SDK doesn’t provide Calendar View. So I was looking for some to integrate into my project. I found one here Android Simple Calendar. It is pretty good example of Calendar GridView integration. Additionally for my project, I was looking for implementing Jewish calendar dates. For this purpose I took HebrewDates class and Java Zmanim… Continue reading Android Calendar with Jewish calendar dates, holidays and zmanim