I have a CustomListView, populating using data from sqlite database, with this information:
Type of Event - Date of Event
Labor Day - 2016-05-01
My Own Day - 2016-05-12
Independence Day - 2016-07-04
Christmas - 2016-12-25
I want to find the item that is equal or close to actual date.
Example:
Today is 2016-05-10.
How I can find and select the item "My Own Day - 2016-05-12" (more close to actual date) in CLV, after load the data from sqlite?
Thanks in advance for any tip.