I am new to android. I am creating a application where the notes shall appear in the timeline as like as facebook. Please help me out how to create such view.
Asked
Active
Viewed 321 times
0
-
Hi Mike, I was able to show till the horizantal scroll of the icons, under the icons i should be able to display the date/month of the created notes.. i was stopped over there – user1614228 Aug 21 '12 at 12:38
-
Its hard to understand what that means , can you please post some relevant code . – Gautam Aug 21 '12 at 12:40
1 Answers
1
Use a List view with a custom adapter.
The custom adapter should extend BaseAdapter, and in the getView method inflate the a view for each list item. Be sure to checkout this technique to prevent Out of memory errors
Have methods in the adapter which allow you to add more data. Then when you update the data call notifyDataSetChanged to update the view.
-
I tried till showing the notes in the horizantal scroll.. but am in fixation how to show the time line under the icons.... – user1614228 Aug 21 '12 at 12:37