I’m not sure where to start with this, I’ve been building an app over the last week and have made good progress and need a custom view now. I’ve looked at http://developer.android.com/guide/topics/ui/custom-components.html.
but huh…not sure how to piece it together.
I want to position the number picker to the left and some text and an image to the right and be able to listen for clicks on the number picker… To be honest I’m not sure where to start.
I’m not sure where to start with this, I’ve been building an app over
Share
I would use a layout to combine your Components. Define your layout in xml:
To use this layout as the rows of a list: create a custom list adapter that extends BaseAdapter, set your list adapter to your custom list adapter, and Override the getView method of the adapter with the below:
}