Android Question Coding question for this Calendar app.

Gary Miyakawa

Active Member
Licensed User
Longtime User
I'm asking the collective, based on the enclosed image, what view would you use to build this dynamic calendar. If you think it looks like the Google Calendar, you are right, it does. I'm trying to build an app that will, basically, mimic the Google Calendar. I don't have to worry about adds, deletes or updates.

I've looked at a lot of the listview tools but having the Date at the top of "section" is a struggle for most listview class/libraries.

I can hard code it but I'm looking for a more "elegant" soluions.

Any and ALL suggestions are greatfully appreciated !

Cheers,

Gary M
 

Attachments

  • cal.png
    cal.png
    63.1 KB · Views: 185

James Chamblin

Active Member
Licensed User
Longtime User
Maybe use a custom listview in which each list item is composed of a label for the day of the week, and another listview containing each item on that day
B4X:
Custom Listview =
{
    Item 1: =
    {
        Label = Oct 31, 2014
        Listview: =
        {
            Item1: = 9 am Go Shopping
            Item2: = 12 pm Go To Lunch
            Item3: = 6 pm Go To Halloween Party
        }
    }
    Item 2: = 
    {
        Label = Nov 1, 2014
        ListView =
        {
            Item1: 8 am Sleep in all day
        }
    }
}
 
Upvote 0
Top