• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to Create dynamic time schedule app

Hi!

I want to create app, which shows items in a list. For example:
Code:
                      LIST
--------------------------------------------
Time           Name               Number                
--------------------------------------------
12:00          Xxxxx              222222
14:00          Yyyyy              444444
The main idea is that it should be possible to create and insert an item dynamically between 12:00 and 14:00 with its own time like:
Code:
                      LIST
---------------------------------------------
Time           Name               Number                
---------------------------------------------
12:00          Xxxxx              222222
13:30          Zzzzz              888888 
14:00          Yyyyy              444444

I have checked many different views and layouts to start with and cant seem to find the right one. There is listview, tablelayout, gridView, etc. Which of the android item is the best to make this kind of dynamic schedule happen? Hope that someone could nudge me in the right direction.
 
Back
Top Bottom