Hashey100
Hashey100

Reputation: 984

Create a calendar from scratch

My aim is to create a calendar from scratch that displays 30 days as onclickable values so when a user presses the 2nd it should display fields where the user can type information. It would then store it into a SQLite table.

I thought about some solutions. I can make a calendar by creating textview with 30 buttons for each month, but that would be slightly ridiculous.

How can this be done?

Upvotes: 0

Views: 434

Answers (1)

Aashish Bhatnagar
Aashish Bhatnagar

Reputation: 2605

use buttons as GridView elements to create calender onClick event should be handled within the adapter this would be the easiest approach to this problem

Upvotes: 5

Related Questions