Skip to content Skip to sidebar Skip to footer

How Do I Roll Out This View In My Android Application?

I have a complex ListView involved layout in my Android project that looks something like the picture attached. The layout has a top, fixed part (the meeting details) with TextVie

Solution 1:

Vogella.com has some good android tutorials. Here is one for writing a custom adapter. The android docs also have a tutorial on listviews, but it doesn't look like they tell you how to do custom adapters. They do, however, tell you how to handle clicks on the list view.

You can setup your comment view to display the Edit and Delete buttons or not in the getView() method of your BaseAdapter class.

Post a Comment for "How Do I Roll Out This View In My Android Application?"