i\'m trying to make (for learning purposes) my own implementation of a simple AdapterView where items comes from an basic Adapter (ImageAdapter from sdk samples).
Ac
Instead of extending the AdapterView, why dont you try with the baseAdapter. When you costumize your Adapter, it has oen method given below.
getView(int position, View convertView,ViewGroup group)
in above method you can access the layout for each list item of the listview and here you can set the all supported events for each control.