Just a beginner at Android development. I\'ve currently got a GridView setup to act as a main menu for my application. I\'ve managed to get an intent working using OnItemClickLi
You have
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
so make use of the int position part of it...
int position
switch (position) { case 0: // start one activity break; case 1: // start another activity break; // etc.