Search code examples
androidlistviewcustomization

Android Custom Listview issue - for time schedule can I change the text color and size?


I'm working on a project which is something like bus schedule.And I'm curious about one thing : Is there any way to do something like this :

listview This is how I want to look like my list view. My idea is to get the current time and than show when the first bus depending on current time is leaving. So if it's 12:00 am/pm I want to show that the next bus is leaving at 12:15 like this.To make the text in different color and make it bigger.

Any ideas or suggestions how can I do that or is it possible to make something like that? Thanks in advance!


Solution

  • use custom adapter for listview and from that class's getview() method just check your current time from that get the depend time. If It available then change the text and font of that list row (textview) simple. Thanks.