I have an Android GridView with an ImageView, TextView and two Button\'s. The Grid is appearing fine but I am finding it
You must use onItemClickListener
gridview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView> parent, View v, int position,
long row) {
}
Position should tell you about element clicked. But I think gridview have problems handle objects with clicklisteners (like buttons). Maybe would better changes gridview for other container. If you needs gridview you can use setOnTouchListener for catch position in screen and create a manual onitemclicklistener.